/* ============================================================
   Don't Burn Out, Burn Bright — brand tokens (from book cover)
   navy   #1D212C  cover background / text
   teal   #33868E  cover title teal
   orange #E36D3B  primary action color
   white  #FFFFFF  page background
   ============================================================ */

:root {
  --navy: #1D212C;
  --teal: #33868E;
  --orange: #E36D3B;
  --orange-dark: #C95A2C;
  --gray: #6B7280;
  --line: #E5E7EB;
  --bg-alt: #F6F7F8;
  --display: "Bebas Neue", "Archivo", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --body: "Archivo", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: #fff;
  color: var(--navy);
  line-height: 1.65;
  font-size: 17px;
}

/* ---------- header ---------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.wordmark {
  font-family: var(--display);
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}
.wordmark em { color: var(--teal); font-style: normal; }
.site-header nav { display: flex; gap: 1.5rem; align-items: center; }
.site-header nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--orange);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  color: #fff !important;
  font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }

/* ---------- hero ---------- */
.hero { background: #fff; padding: 5rem 2rem 5.5rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(3.4rem, 7.5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 span { display: block; }
.line-out { color: var(--teal); }
.line-bright { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  color: #3D4351;
  max-width: 33rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 0.8rem 1.6rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 3px 14px rgba(227, 109, 59, 0.3);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #2A3040; }

.assessment-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 134, 142, 0.35);
}
.assessment-link:hover { border-bottom-color: var(--teal); }

/* ---------- cover image ---------- */
.hero-book { display: flex; justify-content: center; }
.hero-book img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(29, 33, 44, 0.28));
}

/* ---------- sections ---------- */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--bg-alt); }
.narrow { max-width: 44rem; margin: 0 auto; }
.wide { max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }

.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.section p + p { margin-top: 1rem; }
.section p { color: #3D4351; }

/* ---------- featured quote ---------- */
.featured-quote {
  border-top: 3px solid var(--orange);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
}
.featured-quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 600;
}
.featured-quote cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* ---------- cta band ---------- */
.cta-band {
  background: var(--orange);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.cta-inner { max-width: 40rem; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.cta-band p { margin-bottom: 1.75rem; font-size: 1.05rem; color: rgba(255,255,255,0.92); }

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29, 33, 44, 0.1);
  border-color: var(--teal);
}
.card-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}
.card h3 { font-family: var(--display); font-weight: 400; font-size: 1.55rem; letter-spacing: 0.03em; margin: 0.5rem 0 0.4rem; }
.card p { font-size: 0.95rem; color: var(--gray); }

/* ---------- endorsements ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.quote-grid blockquote {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
}
.quote-grid blockquote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.quote-grid cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* ---------- authors ---------- */
.author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.author-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
img.author-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  background: var(--bg-alt);
}
.author h3 { font-family: var(--display); font-weight: 400; font-size: 1.7rem; letter-spacing: 0.03em; margin-bottom: 0.4rem; }
.author p { color: #3D4351; }
.author a { color: var(--teal); }

/* ---------- email ---------- */
.email-section { background: var(--navy); color: #fff; }
.email-section h2 { color: #fff; }
.email-section p { color: rgba(255,255,255,0.75); }
.kit-placeholder {
  margin-top: 2rem;
  border: 1px dashed rgba(51, 134, 142, 0.6);
  border-radius: 10px;
  padding: 2rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- assessment stub page ---------- */
.assessment-page {
  min-height: 100vh;
  background: #fff;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.assessment-page h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: var(--teal);
}
.assessment-page p { max-width: 32rem; color: var(--gray); margin-bottom: 2rem; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-book { order: -1; }
  .hero-book img { max-width: 240px; }
  .site-header { padding: 0.85rem 1.25rem; gap: 0.75rem; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .wordmark { font-size: 1.05rem; letter-spacing: 0.03em; line-height: 1.15; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.82rem; }
  .nav-cta-word { display: none; }
  .hero { padding: 3rem 1.5rem 4rem; }
  .section { padding: 3.5rem 1.5rem; }
}

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
