:root {
  --ivory: #f8efde;
  --near-black: #140d0a;
  --rust: #924b3a;
  --gold: #d1b573;
  --muted-text: rgba(20, 13, 10, 0.72);
  --soft-text: rgba(20, 13, 10, 0.6);
  --line: rgba(20, 13, 10, 0.16);
  --panel: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--ivory);
  color: var(--near-black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(100% - 48px, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a,
.content-page a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-footer a:hover,
.site-footer a:focus,
.content-page a:hover,
.content-page a:focus {
  color: var(--rust);
  border-color: var(--rust);
}

main {
  flex: 1;
}

.hero {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
  padding: 44px 0 92px;
}

.hero-cover {
  justify-self: center;
  width: min(390px, 100%);
}

.hero-cover img {
  width: 100%;
  border: 1px solid rgba(20, 13, 10, 0.18);
  box-shadow: 18px 22px 0 rgba(146, 75, 58, 0.18);
}

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

h1,
h2,
p {
  margin-top: 0;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.series-line {
  margin: 0 0 34px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-blurb {
  max-width: 580px;
  margin-bottom: 36px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.75;
}

.hero-blurb p {
  margin-bottom: 18px;
}

.hero-blurb p:last-child {
  margin-bottom: 0;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--near-black);
  background: var(--near-black);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary:hover,
.button-primary:focus,
.button-secondary:hover,
.button-secondary:focus {
  transform: translateY(-1px);
  background: var(--rust);
  border-color: var(--rust);
}

.button-secondary {
  background: transparent;
  color: var(--near-black);
}

.button-secondary:hover,
.button-secondary:focus {
  color: var(--ivory);
}

.section-label {
  margin: 0 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.praise-section {
  padding: 64px 0 72px;
  border-top: 1px solid var(--line);
}

.praise-section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--muted-text);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  margin: 0 0 88px;
  padding: 84px 0 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-image-wrap {
  width: 100%;
}

.author-placeholder {
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(20, 13, 10, 0.28);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.author-headshot {
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.about-copy {
  max-width: 720px;
}

.about-copy .section-label {
  margin-bottom: 24px;
}

.about-copy p:not(.section-label) {
  margin: 0 0 22px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--near-black);
  font-weight: 700;
}

.about-heading {
  margin: 0 0 28px;
  color: var(--near-black);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
}

@media (max-width: 760px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 64px;
    padding-bottom: 60px;
    text-align: center;
  }

  .author-placeholder {
    width: min(230px, 70vw);
    margin: 0 auto;
  }

  .author-headshot {
    width: min(230px, 70vw);
    margin: 0 auto;
  }

  .about-copy {
    margin: 0 auto;
  }

  .about-copy p:not(.section-label) {
    line-height: 1.72;
  }
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  margin: 16px auto 86px;
  padding: clamp(34px, 4.4vw, 50px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.cta-strip > div {
  max-width: 680px;
}

.cta-strip .section-label {
  margin: 0 0 18px;
}

.cta-strip h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 2.45vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.cta-strip p {
  max-width: 600px;
  margin: 0;
  color: var(--muted-text);
  line-height: 1.7;
}

/* Bonus page */

.bonus-layout {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 52px 0 92px;
}

.bonus-card {
  width: min(100%, 760px);
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
}

.bonus-card h1 {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.bonus-copy {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.7;
}

.signup-placeholder {
  width: min(100%, 480px);
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 239, 222, 0.72);
  text-align: left;
}

.signup-placeholder p {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fake-email-field {
  min-height: 48px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 13, 10, 0.18);
  color: rgba(20, 13, 10, 0.58);
  background: rgba(255, 255, 255, 0.28);
}

.signup-placeholder .button-primary {
  width: 100%;
}

.trust-line {
  margin: 24px 0 0;
  color: var(--soft-text);
  font-size: 0.92rem;
}

/* Contact and privacy pages */

.content-page {
  max-width: 760px;
  padding: clamp(58px, 10vw, 112px) 0 120px;
}

.content-page h1 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.content-page p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.8;
}

.large-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--near-black);
  font-size: clamp(1.18rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  border-bottom: 2px solid var(--rust);
  text-decoration: none;
}

.small-note {
  margin-top: 36px !important;
  font-size: 0.92rem !important;
}

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: rgba(20, 13, 10, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 36px, 1180px);
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .brand-logo {
    width: 215px;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 42px 0 74px;
  }

  .hero-cover {
    width: min(280px, 74vw);
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.6rem);
  }

  .hero-blurb {
    margin-left: auto;
    margin-right: auto;
  }

  .praise-section {
    padding: 64px 0;
    text-align: center;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 64px;
  }
  
  .cta-strip > div {
    max-width: 720px;
  }
  
  .cta-strip .section-label {
    margin-bottom: 18px;
  }
  
  .cta-strip h2 {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }
  
  .cta-strip p {
    max-width: 640px;
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
  }

  .bonus-layout {
    min-height: auto;
    padding: 42px 0 76px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .section-label {
    letter-spacing: 0.28em;
  }

  .hero-cover img {
    box-shadow: 10px 14px 0 rgba(146, 75, 58, 0.18);
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .bonus-card {
    padding: 30px 20px;
  }

  .content-page {
    text-align: center;
    padding-bottom: 82px;
  }

  .large-email {
    word-break: break-word;
  }
}
@media (max-width: 520px) {
  .cta-strip h2 {
    font-size: 1.9rem;
    line-height: 1.18;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
  }
}
.mailerlite-form-wrap {
  width: min(100%, 480px);
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 239, 222, 0.72);
  text-align: left;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer {
  width: 100% !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper {
  background: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0 !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent {
  margin-bottom: 16px !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions {
  margin-bottom: 16px !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin-bottom: 0 !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
}
.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-successContent h4 {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
}

.mailerlite-form-wrap #mlb2-40949200.ml-form-embedContainer .ml-form-successContent p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  margin: 0 0 88px;
  padding: 84px 0 92px;
  border-bottom: 1px solid var(--line);
}

.about-image-wrap {
  width: 100%;
}

.author-placeholder {
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(20, 13, 10, 0.28);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 720px;
}

.about-copy .section-label {
  margin-bottom: 24px;
}

.about-copy p:not(.section-label) {
  margin: 0 0 22px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--near-black);
  font-weight: 700;
}

@media (max-width: 760px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 64px;
    padding: 60px 0 72px;
    text-align: center;
  }

  .author-placeholder {
    width: min(230px, 70vw);
    margin: 0 auto;
  }

  .about-copy {
    margin: 0 auto;
  }

  .about-heading {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .about-copy p:not(.section-label) {
    line-height: 1.72;
  }
}