:root {
    --cream: #FBF8F1;
    --cream-line: #E4DFD1;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --yellow: #FBCE1D;
    --green: #256B3F;
    --green-dark: #1B4E2F;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
  }
  h1, h2, h3, .display {
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.05;
    font-weight: 400;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

  /* HEADER */
  header {
    border-bottom: 1px solid var(--cream-line);
    position: sticky; top: 0; background: var(--cream); z-index: 10;
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 0;
  }
  .logo { font-family: 'Archivo Black', sans-serif; font-size: 20px; letter-spacing: 0.3px; }
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav a { font-size: 14px; font-weight: 500; color: var(--ink); position: relative; }
  nav a:hover { color: var(--green); }
  .nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }

  /* HERO */
  .hero {
    padding: 4.5rem 0 4rem;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 3.5rem; align-items: center;
  }
  .eyebrow {
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--green); margin-bottom: 0.9rem;
  }
  .hero h1 { font-size: 46px; margin-bottom: 1.1rem; }
  .hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 480px; margin-bottom: 1.75rem; }
  .highlight {
    background: linear-gradient(transparent 62%, var(--yellow) 62%);
    font-weight: 600; color: var(--ink);
  }
  .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 6px;
    display: inline-block;
  }
  .btn-primary { background: var(--yellow); color: var(--ink); }
  .btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
  .btn-outline:hover { border-color: var(--green); color: var(--green); }

  .headshot-frame {
    border-radius: 12px; overflow: hidden; border: 1px solid var(--cream-line);
    aspect-ratio: 4/5; background: #ddd;
  }
  .headshot-frame img { width: 100%; height: 100%; object-fit: cover; }


  /* SECTION GENERIC */
  section.block { padding: 4.5rem 0; }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap;
  }
  .section-head h2 { font-size: 30px; }
  .section-head .see-all { font-size: 14px; font-weight: 600; color: var(--green); white-space: nowrap; }
  .section-head .see-all:hover { text-decoration: underline; }
  .section-intro { color: var(--ink-soft); max-width: 640px; margin-bottom: 2.5rem; font-size: 15px; }

  /* BIO */
  .bio-block { padding: 4rem 0 0.5rem; }
  .bio-block .wrap { max-width: 760px; }
  .bio-block p { color: var(--ink-soft); font-size: 16px; margin-bottom: 1rem; }
  .bio-block p:first-of-type::first-letter {
    font-family: 'Archivo Black', sans-serif; font-size: 42px; float: left;
    line-height: 0.85; padding-right: 8px; padding-top: 4px; color: var(--ink);
  }

  /* PROGRAM TEASER */
  .program-teaser { background: var(--green-dark); color: #F4F1E8; }
  .program-teaser .eyebrow { color: var(--yellow); }
  .program-teaser .wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }
  .program-teaser h2 { font-size: 30px; color: #fff; margin-bottom: 1rem; }
  .program-teaser p { color: #D8DDD4; font-size: 15px; margin-bottom: 1.5rem; }
  .program-teaser .btn-outline { border-color: #F4F1E8; color: #F4F1E8; }
  .program-teaser .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
  .placeholder-img {
    background: #111; border-radius: 10px; aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    color: #555; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  }

  /* PORTFOLIO TEASER */
  .portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .portfolio-card .placeholder-img { margin-bottom: 0.9rem; }
  .portfolio-card h3 { font-size: 16px; margin-bottom: 0.25rem; }
  .portfolio-card .tag { font-size: 13px; color: var(--green); font-weight: 600; }

  /* WRITING TEASER */
  .writing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start;
  }
  .book-card img {
    border-radius: 6px; border: 1px solid var(--cream-line); margin-bottom: 0.9rem;
    aspect-ratio: 3/4.6; object-fit: cover; width: 100%;
  }
  .book-card h3 { font-size: 15px; margin-bottom: 0.2rem; }
  .book-card .tag { font-size: 13px; color: var(--ink-soft); }
  .press-strip {
    margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--cream-line);
    display: flex; gap: 2.5rem; flex-wrap: wrap;
  }
  .press-item { font-size: 14px; }
  .press-item .outlet { font-weight: 600; color: var(--green); }
  .press-item .desc { color: var(--ink-soft); }

  /* CONTACT ROUTING */
  .contact-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
  }
  .contact-card {
    border: 1px solid var(--cream-line); border-radius: 12px; padding: 2rem;
    background: #fff;
  }
  .contact-card h3 { font-size: 19px; margin-bottom: 0.6rem; }
  .contact-card p { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.25rem; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--cream-line); padding: 3rem 0 2.5rem;
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  }
  .footer-brand .logo { margin-bottom: 0.5rem; }
  .footer-brand p { font-size: 13px; color: var(--ink-soft); max-width: 260px; }
  .footer-links { display: flex; gap: 3.5rem; flex-wrap: wrap; }
  .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 0.8rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col a { font-size: 14px; }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom {
    margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-line);
    font-size: 12px; color: var(--ink-soft);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  }

  /* MOBILE */
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { padding: 2.5rem 0 2.5rem; }
    .headshot-frame { max-width: 280px; margin: 0 auto; }
    .program-teaser .wrap { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .writing-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .nav-toggle { display: block; }
    .footer-inner { flex-direction: column; }
  }
  @media (max-width: 560px) {
    .hero h1 { font-size: 34px; }
    .writing-grid { grid-template-columns: 1fr; }
    .wrap { padding: 0 1.25rem; }
  }

/* ===== BOOK MICROSITE ===== */
.book-header {
  border-bottom: 1px solid var(--cream-line);
  padding: 1.1rem 0;
}
.book-header .header-inner { justify-content: space-between; }
.book-header .back-link { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.book-header .back-link:hover { color: var(--green); }

.book-hero { padding: 3.5rem 0 3rem; }
.book-hero-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start;
}
.book-cover-lg {
  border-radius: 8px; border: 1px solid var(--cream-line);
  width: 100%; box-shadow: 0 12px 28px rgba(26,26,26,0.12);
}
.book-hero h1 { font-size: 34px; margin-bottom: 0.5rem; }
.book-hero .subtitle { font-size: 17px; color: var(--ink-soft); margin-bottom: 1rem; }
.meta-line {
  font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line); padding: 0.75rem 0; margin-bottom: 1.5rem; line-height: 1.7;
}
.book-hero .desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 1.75rem; max-width: 560px; }

.toc-columns {
  columns: 2; column-gap: 2.5rem; max-width: 700px;
}
.toc-columns li { font-size: 14px; margin-bottom: 0.55rem; break-inside: avoid; }
.toc-columns { list-style: none; counter-reset: toc; padding: 0; }
.toc-columns li { counter-increment: toc; }
.toc-columns li::before {
  content: counter(toc) ". "; color: var(--green); font-weight: 600;
}

.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.review-card {
  background: #fff; border: 1px solid var(--cream-line); border-radius: 10px; padding: 1.5rem;
}
.review-card p { font-size: 14px; color: var(--ink); margin-bottom: 0.9rem; font-style: italic; }
.review-card .attribution { font-size: 13px; color: var(--green); font-weight: 600; font-style: normal; }

.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem;
}
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--cream-line); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-cat { font-size: 13px; font-weight: 600; margin-top: 0.6rem; color: var(--ink); }

.buy-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.buy-card {
  border: 1px solid var(--cream-line); border-radius: 10px; padding: 1.5rem; background: #fff;
}
.buy-card h3 { font-size: 16px; margin-bottom: 0.5rem; }
.buy-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 1rem; }
.pending-note {
  font-size: 12px; color: #9A7B00; background: #FFF7DC; border: 1px solid #F0E1A0;
  padding: 3px 9px; border-radius: 5px; display: inline-block; margin-left: 8px; font-weight: 600;
}

@media (max-width: 860px) {
  .book-hero-grid { grid-template-columns: 1fr; }
  .book-cover-lg { max-width: 260px; margin: 0 auto; display: block; }
  .toc-columns { columns: 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .buy-options { grid-template-columns: 1fr; }
}
