:root {
  --paper: #f4f1ea;
  --paper-deep: #e8e3d9;
  --ink: #0d0d0d;
  --muted: #4f4b45;
  --yellow: #f7bf00;
  --rule: rgba(13, 13, 13, 0.16);
  --charcoal: #111;
  --charcoal-soft: #181818;
  --max: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 52%, rgba(0, 0, 0, 0.045) 0 36px, transparent 37px),
    radial-gradient(circle at 11% 52%, rgba(0, 0, 0, 0.035) 0 31px, transparent 32px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 32%, rgba(0, 0, 0, 0.035)),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 56px);
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.brand {
  justify-self: start;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 5px 0;
}

.site-nav a::after,
.text-link::after,
.section-kicker::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 8px;
  background: var(--yellow);
}

.site-nav a::after {
  width: 0;
  margin-inline: auto;
  background: var(--ink);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav .is-active::after {
  width: 22px;
}

.mobile-buy-link {
  display: none;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-buy {
  justify-self: end;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
}

.section-pad {
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  max-width: 1260px;
  min-height: 610px;
  margin: 0 auto;
  padding-top: clamp(36px, 5vw, 64px);
}

.hero h1,
.about-grid h2,
.excerpt h2,
.author-copy h2,
.journey h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(60px, 7.4vw, 96px);
}

.yellow-rule {
  width: 46px;
  height: 4px;
  margin: 24px 0 20px;
  background: var(--yellow);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.hero-text {
  max-width: 500px;
  margin: 0 0 32px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 28px;
}

.early-access-form {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.access-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
}

.access-card-head p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.3;
}

.access-bell {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--yellow);
}

.access-bell svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.early-access-form label {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(285px, 1fr) 172px;
  gap: 10px;
}

.early-access-form input {
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: inherit;
}

.early-access-form input:focus {
  border-color: var(--ink);
  outline: 2px solid rgba(247, 191, 0, 0.38);
  outline-offset: 2px;
}

.hero-access-form {
  flex: 0 1 560px;
  max-width: 560px;
  margin-top: 0;
  padding: 18px 20px 20px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(244, 241, 234, 0.48);
}

.hero-access-form label {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.13em;
}

.hero-access-form .button {
  min-height: 50px;
}

.hero-actions > .button-secondary {
  flex: 0 0 220px;
  min-height: 50px;
  margin-bottom: 22px;
}

.thank-you-actions {
  margin-top: 48px;
  align-items: center;
}

.hero-actions.thank-you-actions > .button-secondary {
  margin-bottom: 0;
}

.thank-you-hero .preface-hero-copy p {
  max-width: 760px;
}

.journey-access-form {
  margin: 14px auto 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 26px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.button-primary span {
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  appearance: none;
}

.hero-book {
  position: relative;
  justify-self: center;
  width: min(480px, 100%);
  aspect-ratio: 1460 / 1753;
  background: transparent;
}

.hero-book img {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  filter: drop-shadow(28px 30px 34px rgba(0, 0, 0, 0.13));
  object-fit: contain;
}

.preface-quote {
  position: relative;
  overflow: hidden;
  padding: 50px 24px 58px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 42%),
    var(--charcoal);
  color: var(--paper);
}

.preface-quote::before,
.praise::after {
  content: "";
  position: absolute;
  left: -3%;
  width: 106%;
  height: 26px;
  background: var(--paper);
  clip-path: polygon(0 34%, 6% 64%, 12% 40%, 19% 70%, 25% 44%, 32% 60%, 39% 36%, 45% 66%, 52% 40%, 58% 68%, 65% 34%, 73% 62%, 81% 42%, 88% 66%, 95% 38%, 100% 60%, 100% 0, 0 0);
}

.preface-quote::before {
  top: -1px;
  filter: drop-shadow(0 5px 0 var(--yellow));
}

.quote-wrap {
  display: grid;
  grid-template-columns: 64px minmax(0, 810px);
  gap: 22px;
  max-width: 890px;
  margin: 0 auto;
}

.quote-mark,
.praise-card span {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.9;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
}

.quote-wrap p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-banner {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.brand-banner img {
  width: 100%;
  height: clamp(210px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.brand-banner-mobile {
  display: none;
}

.about-book {
  position: relative;
  overflow: hidden;
}

.section-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-book > .section-kicker,
.about-grid,
.excerpt,
.praise {
  max-width: var(--max);
  margin-inline: auto;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  margin-top: 20px;
}

.about-grid h2,
.excerpt h2,
.author-copy h2 {
  font-size: clamp(34px, 4.8vw, 50px);
}

.body-copy {
  max-width: 580px;
  font-size: 16px;
}

.body-copy p {
  margin: 0 0 18px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 12px;
  font-size: 18px;
}

.watermark-smile {
  position: absolute;
  left: -30px;
  top: 76px;
  width: 220px;
  height: 170px;
  opacity: 0.06;
  border-bottom: 10px solid #111;
  border-radius: 0 0 50% 50%;
}

.watermark-smile::before,
.watermark-smile::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 34px;
  height: 60px;
  border-radius: 50%;
  background: #111;
}

.watermark-smile::before {
  left: 58px;
}

.watermark-smile::after {
  right: 58px;
}

.excerpt {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(240px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 8vw, 100px);
  padding-top: 20px;
}

.excerpt-copy {
  max-width: 680px;
}

.excerpt h2 {
  margin: 18px 0 16px;
}

.excerpt p {
  margin: 0 0 12px;
  max-width: 480px;
}

.excerpt-book {
  position: relative;
  justify-self: center;
  width: min(310px, 100%);
  margin: 0;
  aspect-ratio: 1276 / 1680;
  filter: drop-shadow(22px 26px 28px rgba(0, 0, 0, 0.12));
}

.excerpt-book::before {
  content: "";
  position: absolute;
  inset: 14% -20% 10%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--yellow) 8% 92%, transparent 92%),
    var(--paper-deep);
  opacity: 0.88;
  clip-path: polygon(0 22%, 100% 13%, 100% 78%, 0 88%);
}

.excerpt-book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.author-band {
  display: grid;
  grid-template-columns: minmax(390px, 43vw) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(560px, 47vw, 680px);
  gap: 0;
  padding: 0;
  background: linear-gradient(90deg, #171717, #0f0f0f);
  color: var(--paper);
  overflow: hidden;
}

.author-photo {
  align-self: stretch;
  display: block;
  overflow: hidden;
  background: #151515;
}

.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  box-shadow: none;
}

.author-copy {
  align-self: center;
  max-width: 940px;
  padding: clamp(52px, 6vw, 88px) clamp(34px, 7vw, 112px);
}

.author-copy h2 {
  max-width: 920px;
  margin: 22px 0 28px;
  font-size: clamp(58px, 5.6vw, 98px);
  line-height: 0.95;
}

.author-copy p {
  max-width: 880px;
  margin: 0 0 26px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
}

.text-link-dark::after {
  background: var(--yellow);
}

.praise {
  position: relative;
  display: grid;
  grid-template-columns: 0.56fr repeat(3, 1fr);
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 74px;
}

.praise::after {
  bottom: -1px;
  transform: rotate(180deg);
  filter: drop-shadow(0 -5px 0 var(--yellow));
}

.praise-card {
  min-height: 250px;
  padding-left: 26px;
  border-left: 1px solid var(--rule);
}

.praise-card span {
  display: block;
  height: 38px;
  font-size: 52px;
}

.praise-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
}

.praise-card footer {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.praise-card small {
  font-size: 10px;
}

.journey {
  padding: 32px 22px 34px;
  text-align: center;
  background: var(--paper);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: 36px clamp(22px, 6vw, 72px) 40px;
  text-align: left;
}

.journey-copy {
  justify-self: end;
  max-width: 430px;
  text-align: center;
}

.preface-reader + .journey {
  padding-top: 16px;
}

.journey h2 {
  font-size: clamp(36px, 5vw, 50px);
}

.journey p {
  margin: 6px 0 14px;
}

.contact-forms {
  display: grid;
  gap: 6px;
  max-width: 560px;
  width: 100%;
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid var(--rule);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form + .contact-form {
  padding-top: 6px;
  border-top: 1px solid var(--rule);
}

.contact-form label {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 46px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 86px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  outline: 2px solid rgba(247, 191, 0, 0.38);
  outline-offset: 2px;
}

.contact-form .button {
  min-width: 96px;
  background: var(--paper);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.early-access-form .button {
  min-width: 112px;
}

.contact-submit {
  justify-self: start;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.preface-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
  align-items: center;
  gap: clamp(34px, 8vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
  min-height: 620px;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.preface-hero-copy {
  max-width: 720px;
}

.back-link {
  display: inline-block;
  margin-bottom: 38px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preface-hero h1 {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.95;
}

.preface-hero p {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.preface-book {
  position: relative;
  justify-self: center;
  width: min(330px, 100%);
  margin: 0;
  aspect-ratio: 1460 / 1753;
  filter: drop-shadow(24px 28px 30px rgba(0, 0, 0, 0.14));
}

.preface-book::before {
  content: "";
  position: absolute;
  inset: 18% -24% 13%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--yellow) 8% 92%, transparent 92%),
    var(--paper-deep);
  opacity: 0.84;
  clip-path: polygon(0 25%, 100% 12%, 100% 76%, 0 88%);
}

.preface-book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preface-reader {
  position: relative;
  max-width: 820px;
  margin: 0 auto 8px;
  padding: clamp(46px, 7vw, 76px) clamp(22px, 5vw, 54px) 18px;
  border-top: 1px solid var(--rule);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 40%),
    rgba(244, 241, 234, 0.68);
}

.preface-reader::before {
  content: "";
  position: absolute;
  top: -3px;
  left: clamp(22px, 5vw, 48px);
  width: 54px;
  height: 4px;
  background: var(--yellow);
}

.preface-reader p {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.68;
}

.preface-reader .reader-drop::first-letter {
  float: left;
  padding: 9px 10px 0 0;
  color: var(--yellow);
  font-size: 76px;
  line-height: 0.78;
}

.preface-reader h2 {
  margin: 42px 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.about-hussein-page {
  background: var(--paper);
}

.about-hussein-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  min-height: clamp(620px, 50vw, 760px);
  background: linear-gradient(90deg, #161616, #0f0f0f);
  color: var(--paper);
  overflow: hidden;
}

.hussein-hero-media {
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.hussein-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hussein-hero-copy {
  align-self: center;
  max-width: 880px;
  padding: clamp(50px, 7vw, 100px) clamp(30px, 7vw, 112px);
}

.hussein-hero-copy .back-link {
  margin-bottom: 34px;
  color: var(--paper);
}

.hussein-hero-copy h1 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(58px, 6.8vw, 116px);
  font-weight: 400;
  line-height: 0.92;
}

.hussein-hero-copy p {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.15;
}

.bio-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.bio-credentials div {
  min-height: 170px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
}

.bio-credentials span {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bio-credentials p {
  max-width: 380px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.bio-reader {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.bio-reader p {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.66;
}

.bio-reader .reader-drop::first-letter {
  float: left;
  padding: 9px 10px 0 0;
  color: var(--yellow);
  font-size: 76px;
  line-height: 0.78;
}

.bio-callout {
  margin: clamp(38px, 6vw, 64px) 0;
  padding: clamp(34px, 5vw, 58px);
  background: #111;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.bio-reader h2 {
  margin: clamp(38px, 6vw, 64px) 0 28px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.bio-closing {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 110px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 42%),
    var(--paper-deep);
  border-top: 1px solid var(--rule);
}

.bio-closing .section-kicker {
  grid-column: 1 / -1;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
}

.bio-closing h2 {
  justify-self: end;
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 0.96;
}

.bio-closing-copy {
  justify-self: start;
  max-width: 760px;
}

.bio-closing p {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.62;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(22px, 6vw, 72px);
  background: #0b0b0b;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--paper);
  font-family: var(--serif);
  letter-spacing: 0;
}

.footer-brand {
  font-size: 11px;
}

.site-footer nav,
.social-links {
  display: flex;
  gap: 28px;
}

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

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .about-grid,
  .excerpt,
  .author-band,
  .praise {
    grid-template-columns: 1fr;
  }

  .quote-wrap {
    grid-template-columns: 44px 1fr;
  }

  .author-band {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .author-photo {
    min-height: 0;
  }

  .author-photo img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .author-copy {
    padding: 34px clamp(22px, 6vw, 52px) 42px;
  }

  .author-copy h2 {
    font-size: clamp(42px, 8vw, 68px);
  }

  .author-copy p {
    font-size: 17px;
  }

  .praise-label {
    margin-bottom: 8px;
  }

  .praise-card {
    min-height: 0;
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .excerpt {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
    gap: 24px;
  }

  .excerpt-book {
    width: min(220px, 100%);
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

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

  .journey-copy {
    justify-self: center;
  }

  .contact-forms {
    max-width: 620px;
    margin-inline: auto;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--rule);
    text-align: left;
  }

  .site-footer nav,
  .social-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .preface-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hussein-hero,
  .bio-credentials,
  .bio-closing {
    grid-template-columns: 1fr;
  }

  .about-hussein-hero {
    min-height: 0;
  }

  .hussein-hero-media {
    min-height: 0;
  }

  .hussein-hero-media img {
    height: auto;
  }

  .bio-credentials div {
    min-height: 0;
  }

  .preface-book {
    width: min(260px, 52vw);
  }

  .brand-banner {
    min-height: 360px;
    background:
      radial-gradient(circle at 50% 54%, rgba(247, 191, 0, 0.2), transparent 42%),
      linear-gradient(180deg, rgba(244, 241, 234, 0.35), rgba(244, 241, 234, 0.06)),
      var(--paper);
  }

  .brand-banner img {
    display: none;
  }

  .brand-banner::before {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 42%;
    height: 118px;
    background: var(--yellow);
    box-shadow:
      0 -12px 0 rgba(255, 255, 255, 0.64),
      0 12px 0 rgba(255, 255, 255, 0.72);
    transform: rotate(-2deg);
  }

  .brand-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(260px, 34vw);
    aspect-ratio: 1;
    background: url("assets/torn-smile.png") center / cover no-repeat;
    border-radius: 50%;
    filter: grayscale(0.12);
    mix-blend-mode: multiply;
    opacity: 0.16;
    transform: translate(-50%, -50%);
  }

  .brand-banner-mobile {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 360px;
    align-content: center;
    padding: 56px 22px;
    text-align: center;
  }

  .brand-banner-mobile h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 9vw, 68px);
    font-weight: 400;
    line-height: 0.96;
  }

  .brand-banner-mobile p,
  .brand-banner-mobile span {
    display: block;
    margin: 18px auto 0;
    max-width: 420px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .brand-banner-mobile span {
    margin-top: 24px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.12em;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
    gap: 28px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(54px, 7.5vw, 72px);
  }

  .hero-subtitle {
    font-size: clamp(24px, 3.4vw, 30px);
  }

  .hero-book {
    width: min(310px, 100%);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-block: 16px;
    gap: 14px;
  }

  .brand {
    grid-column: 1;
    align-self: center;
  }

  .nav-buy {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    min-height: 40px;
    padding: 9px 15px;
    font-size: 10px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: clamp(20px, 5vw, 56px);
    right: clamp(20px, 5vw, 56px);
    z-index: 30;
    width: auto;
    padding: 6px 0;
    border-top: 1px solid var(--rule);
    background: rgba(244, 241, 234, 0.98);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
    font-size: 11px;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav .mobile-buy-link {
    display: block;
    margin: 10px 12px 6px;
    padding: 15px 16px;
    border-bottom: 0;
    background: var(--ink);
    color: var(--yellow);
    font-weight: 900;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 13.8vw, 60px);
    line-height: 0.92;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-subtitle,
  .hero-text {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-bottom: 2px;
    font-size: clamp(23px, 7.2vw, 30px);
    line-height: 1.02;
  }

  .hero-text {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.38;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

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

  .hero-access-form {
    max-width: 100%;
    padding: 18px;
  }

  .hero-actions > .button-secondary {
    flex: none;
    min-height: 46px;
    margin-bottom: 0;
  }

  .access-card-head {
    gap: 10px;
  }

  .access-card-head p {
    font-size: 14px;
  }

  .access-bell {
    width: 30px;
    height: 30px;
  }

  .hero-access-form label {
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .contact-section {
    padding: 30px 20px 34px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .hero-book {
    order: -1;
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: min(230px, 62vw);
    margin: 0 auto 12px;
    opacity: 0.96;
    pointer-events: none;
    transform: none;
  }

  .hero-book img {
    filter: none;
  }

  .yellow-rule {
    margin: 4px 0 4px;
  }

  .excerpt {
    display: block;
  }

  .excerpt-book {
    display: none;
  }

  .author-band {
    padding: 0;
  }

  .author-photo img {
    width: 100%;
  }

  .author-copy {
    padding: 28px 20px 36px;
  }

  .preface-hero {
    padding-top: 48px;
  }

  .thank-you-hero {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .thank-you-hero .section-kicker {
    margin-bottom: 24px;
  }

  .thank-you-hero h1 {
    max-width: 520px;
    margin-bottom: 26px;
    font-size: clamp(64px, 17vw, 86px);
    line-height: 0.92;
  }

  .thank-you-hero .preface-hero-copy p {
    max-width: 540px;
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
  }

  .thank-you-actions {
    margin-top: 36px;
    gap: 14px;
  }

  .thank-you-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .preface-book {
    display: none;
  }

  .hussein-hero-copy {
    padding: 34px 20px 42px;
  }

  .hussein-hero-copy .back-link {
    margin-bottom: 24px;
  }

  .hussein-hero-copy h1 {
    font-size: clamp(46px, 12vw, 62px);
  }

  .hussein-hero-copy p {
    font-size: clamp(23px, 7vw, 31px);
  }

  .bio-reader {
    padding: 44px 20px;
  }

  .bio-callout {
    margin: 32px 0;
    padding: 28px 22px;
  }

  .bio-closing {
    padding: 44px 20px;
  }

  .brand-banner {
    min-height: 360px;
    background:
      radial-gradient(circle at 50% 54%, rgba(247, 191, 0, 0.2), transparent 42%),
      linear-gradient(180deg, rgba(244, 241, 234, 0.35), rgba(244, 241, 234, 0.06)),
      var(--paper);
  }

  .brand-banner img {
    display: none;
  }

  .brand-banner::before {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 42%;
    height: 118px;
    background: var(--yellow);
    box-shadow:
      0 -12px 0 rgba(255, 255, 255, 0.64),
      0 12px 0 rgba(255, 255, 255, 0.72);
    transform: rotate(-2deg);
  }

  .brand-banner::after {
    width: min(230px, 62vw);
    opacity: 0.14;
  }

  .brand-banner-mobile {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 360px;
    align-content: center;
    padding: 56px 22px;
    text-align: center;
  }

  .brand-banner-mobile h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 13vw, 58px);
    font-weight: 400;
    line-height: 0.96;
  }

  .brand-banner-mobile p,
  .brand-banner-mobile span {
    display: block;
    margin: 18px auto 0;
    max-width: 320px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .brand-banner-mobile span {
    margin-top: 24px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.12em;
  }

  .quote-wrap {
    display: block;
  }

  .quote-mark {
    display: block;
    height: 48px;
  }

  .quote-wrap p {
    margin-top: 18px;
  }

  .section-pad {
    padding-inline: 20px;
  }

  .about-grid h2,
  .excerpt h2,
  .author-copy h2 {
    font-size: 36px;
  }
}
