:root {
  --bg: #FAF7F0;
  --surface: #FFFFFF;
  --ink: #1F1F1F;
  --ink-soft: #4A4A4A;
  --muted: #6B6B6B;
  --border: #E8E3D6;
  --border-strong: #D5CFBE;
  --accent: #8C5A1B;
  --accent-soft: #F2E6D2;
  --accent-dark: #6B4514;
  --navy: #1E4374;
  --good: #2F7D55;
  --max: 1100px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  font-weight: bold;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.nav-brand span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
}
.nav-cta:hover { background: var(--accent-dark); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -1px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 { font-size: 56px; }
.hero p.lead {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: white;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  color: white;
}
.btn.secondary {
  background: var(--surface);
  color: var(--accent);
}
.btn.secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.btn.large { font-size: 17px; padding: 16px 36px; }

/* SECTIONS */
section { padding: 70px 0; }
section.tight { padding: 50px 0; }
section h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
section.center { text-align: center; }
section.center h2 { margin-left: auto; margin-right: auto; max-width: 720px; }
section.center p.lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin: 0 auto 40px; }

.section-eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* GEARS GRID */
.gears {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gear {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px 20px;
  border-radius: 6px;
  text-align: left;
  transition: all 0.2s ease;
}
.gear:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(140, 90, 27, 0.08);
}
.gear-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 8px;
}
.gear-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.gear-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* FEATURE / STRIPE */
.feature-stripe {
  background: var(--accent-soft);
  padding: 70px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-grid h2 { margin-top: 0; }
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.feature-bullets li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
}
.feature-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
}
.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* SIGNUP / LEAD MAGNET BLOCK */
.leadmagnet {
  background: var(--navy);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.leadmagnet h2 { color: white; }
.leadmagnet p { color: #DBE3F0; font-size: 18px; max-width: 600px; margin: 0 auto 30px; }
.signup-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 16px;
  background: white;
  color: var(--ink);
}
.signup-form .btn {
  padding: 14px 24px;
  background: var(--accent);
  border-color: var(--accent);
}
.signup-form .btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.signup-microcopy {
  font-size: 13px;
  color: #B8C2D6;
  margin-top: 16px;
  font-style: italic;
}

/* BOOK BLOCK */
.book-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.book-cover {
  background: linear-gradient(135deg, #1E4374 0%, #2A5A9B 100%);
  color: white;
  border-radius: 4px;
  padding: 40px 32px;
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.book-cover::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: rgba(140, 90, 27, 0.25);
  border-radius: 50%;
}
.book-cover-tag {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.book-cover-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 14px 0;
  position: relative;
  z-index: 1;
}
.book-cover-subtitle {
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.book-cover-author {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* CHAPTERS LIST */
.chapter-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.chapter-list li {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.chapter-list li:last-child { border-bottom: none; }
.chapter-list .num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: var(--accent);
  font-weight: bold;
  min-width: 70px;
}
.chapter-list .title { font-size: 15px; }

/* TESTIMONIAL / QUOTE */
.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin: 30px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  border-radius: 0 6px 6px 0;
}

/* ABOUT */
.bio-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #8C5A1B 0%, #6B4514 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: bold;
}

/* CONTACT FORM */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: bold;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 16px;
  background: var(--surface);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
}

/* FOOTER */
footer.site-footer {
  background: var(--ink);
  color: #C9C9C9;
  padding: 50px 0 30px;
  margin-top: 80px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}
footer.site-footer h4 {
  font-family: Georgia, serif;
  font-size: 16px;
  color: white;
  margin: 0 0 14px;
}
footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site-footer ul li { margin-bottom: 8px; }
footer.site-footer a { color: #C9C9C9; }
footer.site-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #3A3A3A;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 800px) {
  .hero { padding: 50px 0 40px; }
  .hero h1, h1 { font-size: 36px; }
  .hero p.lead { font-size: 17px; }
  section { padding: 50px 0; }
  section h2 { font-size: 28px; }
  .gears { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 30px; }
  .book-block { grid-template-columns: 1fr; }
  .book-cover { max-width: 280px; margin: 0 auto; }
  .bio-grid { grid-template-columns: 1fr; gap: 24px; }
  .bio-photo { max-width: 200px; margin: 0 auto; }
  footer.site-footer .container { grid-template-columns: 1fr; gap: 30px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 500px) {
  .gears { grid-template-columns: 1fr; }
}
