:root {
  --red: #b3241f;
  --red-dark: #8c1c18;
  --ink: #222;
  --gray: #555;
  --light-gray: #f6f4f1;
  --border: #e2ddd6;
  --gold: #c9a24b;
  --max-width: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offset anchor-scroll targets so the sticky header doesn't cover the
   section title when jumping in via the nav (or a direct #section link). */
section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  color: var(--red-dark);
  line-height: 1.2;
}

a { color: var(--red); }
a:hover { color: var(--red-dark); }

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

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo img {
  height: 44px;
  display: block;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav.main-nav a:hover { color: var(--red); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 2.1rem;
  margin: 0 0 14px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  color: #f4e9e6;
}

.hero .stat-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
}

.stat .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f4e9e6;
}

/* Sections */
section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type { border-bottom: none; }

section.alt { background: var(--light-gray); }

h2.section-title {
  font-size: 1.7rem;
  margin: 0 0 8px;
  border-left: 5px solid var(--red);
  padding-left: 14px;
}

.section-lede {
  color: var(--gray);
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  margin: 0 0 30px;
  padding-left: 19px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 20px 22px;
  border-radius: 4px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray);
}

/* Book section */
.book-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.book-covers {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.book-covers img {
  width: 150px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.book-info {
  flex: 1 1 320px;
  min-width: 280px;
}

.pull-quote {
  border-left: 4px solid var(--gold);
  background: var(--light-gray);
  margin: 22px 0;
  padding: 16px 20px;
  font-style: italic;
  color: #444;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
}

.buy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn:hover { background: var(--red-dark); color: #fff; }

.btn.outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.speaker-callout {
  margin-top: 26px;
  padding: 18px 20px;
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: 4px;
}

.speaker-callout h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1rem;
}

.speaker-callout p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--gray);
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  background: var(--light-gray);
  border: none;
  padding: 16px 20px;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.accordion-toggle:hover { background: #efe9e2; }

.accordion-toggle .cs-num {
  color: var(--red);
  margin-right: 10px;
  font-weight: bold;
}

.accordion-toggle .chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--red);
}

.accordion-item.open .chevron { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}

.accordion-item.open .accordion-panel {
  padding: 18px 22px 22px;
}

.accordion-panel p {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.accordion-panel p:last-child { margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.contact-item p, .contact-item a {
  margin: 0;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
}

.contact-item a:hover { color: var(--red); }

/* Footer */
footer {
  background: var(--ink);
  color: #ccc;
  padding: 28px 0;
  text-align: center;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
}

footer a { color: #eee; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav.main-nav ul { gap: 4px 12px; }
  .hero h1 { font-size: 1.6rem; }
  .book-layout { flex-direction: column; }
}
