:root {
  --ink: #1b2332;
  --green: #183f35;
  --cream: #fbf8f3;
  --paper: #ffffff;
  --sand: #f5f0e8;
  --gold: #c6a35e;
  --muted: #5e665f;
  --line: #e8e3da;
  --peach: #f3b79f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: #455048;
}
.nav-links .nav-quiz {
  background: var(--ink);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: 999px;
}
.hero-band {
  background: var(--green);
  color: var(--cream);
  padding: 88px 24px;
}
.hero-inner, .wrap {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  max-width: 900px;
  margin: 0 0 24px;
}
.hero-copy {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  max-width: 760px;
  color: rgba(251,248,243,0.86);
}
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
}
.btn-primary { background: var(--peach); color: var(--ink); }
.btn-secondary { border-color: rgba(251,248,243,.35); color: var(--cream); }
.section { padding: 72px 0; }
.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  display: block;
}
.card:hover { border-color: var(--gold); }
.card .tag { color: #8b7340; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 750; }
.card h3 { font-size: 23px; line-height: 1.18; margin: 12px 0 10px; }
.card p { color: var(--muted); line-height: 1.6; margin: 0; }
.article {
  width: min(760px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 64px 0 80px;
}
.article h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.article p, .article li { font-size: 18px; line-height: 1.78; color: #333f38; }
.article h2 { font-size: 34px; margin: 54px 0 18px; }
.article h3 { font-size: 24px; margin: 34px 0 12px; }
.callout {
  border-left: 5px solid var(--gold);
  background: #fff;
  padding: 24px;
  border-radius: 0 8px 8px 0;
  margin: 34px 0;
}
.checklist {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.tool-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin-top: 30px;
}
.tool-panel label { display: block; font-weight: 750; margin: 18px 0 8px; }
.tool-panel input, .tool-panel select, .tool-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d0c4;
  border-radius: 6px;
  font: inherit;
  background: #fff;
}
.result-box {
  margin-top: 24px;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
  padding: 24px;
}
.result-box p { color: rgba(251,248,243,.9); }
.result-box strong { color: var(--gold); }
.advisor-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 26px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  margin-top: 38px;
}
.advisor-block h2, .advisor-block h3 { margin: 0 0 12px; }
.advisor-block p, .snapshot-strip p { color: var(--muted); line-height: 1.65; margin: 0; }
.advisor-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.advisor-actions .btn-secondary, .snapshot-strip .btn-secondary {
  color: var(--ink);
  border-color: var(--gold);
}
.snapshot-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  margin: 34px 0;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px;
  color: #7d847e;
  font-size: 13px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.book-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 64px 0 80px;
}
.book-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.book-cover-frame {
  background: linear-gradient(180deg, #f7efe2 0%, #efe3d2 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(27,35,50,.08);
}
.book-cover-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.book-cover-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.book-intro h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  margin: 0 0 14px;
}
.book-intro p {
  font-size: 18px;
  line-height: 1.74;
  color: #333f38;
  margin: 0 0 16px;
}
.book-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.book-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.book-pill-label {
  color: #8b7340;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: 6px;
}
.book-pill-value {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}
.book-section {
  margin-top: 48px;
}
.book-section h3 {
  font-size: 28px;
  margin: 0 0 14px;
}
.book-promise-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.book-promise-list ul {
  margin: 0;
  padding-left: 22px;
}
.book-promise-list li {
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 12px;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.quote-card blockquote {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.25;
}
.quote-card cite {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.chapter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.chapter-card .tag {
  color: #8b7340;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: 8px;
}
.chapter-card h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
}
.chapter-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}
.profile-portrait {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.profile-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.profile-portrait p {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
}
.credential-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 26px 0;
}
.credential {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 16px;
}
.credential strong {
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .site-nav { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 12px; }
  .hero-band { padding: 64px 24px; }
  .section { padding: 52px 0; }
  .advisor-block { grid-template-columns: 1fr; }
  .book-shell { padding: 48px 0 64px; }
  .book-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
}

