/* ================================
   RESET & BASE
   ================================ */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* ================================
   BACKGROUND (SITE IMAGE)
   ================================ */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #f4f8fb;

  background-image: url("site-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ================================
   COLOR SYSTEM
   ================================ */

:root {
  --bg-deep: #02060d;
  --bg-mid: #071f2f;
  --bg-glass: rgba(5, 25, 40, 0.70);

  --text-main: #f2f7fb;
  --text-soft: #b9d7e6;

  --accent-teal: #5fdcff;
  --accent-ice: #9ef6ff;
  --accent-gold: #f5d27d;

  --border-soft: rgba(255, 255, 255, 0.14);
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4 {
  color: var(--text-main);
  letter-spacing: 0.02em;
}

h1 {
  color: var(--accent-ice);
  text-shadow: 0 0 14px rgba(95, 220, 255, 0.35);
  font-size: 2.8rem;
}

h2 {
  color: var(--accent-teal);
  font-size: 2rem;
}

p {
  color: var(--text-soft);
  max-width: 720px;
}

/* ================================
   LINKS
   ================================ */

a {
  color: var(--accent-ice);
  text-decoration: none;
}

a:hover {
  color: var(--accent-gold);
}

/* ================================
   LAYOUT HELPERS
   ================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section {
  margin: 4rem 0;
}

/* ================================
   NAVIGATION
   ================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 15, 25, 0.55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 1.5rem;
  color: var(--text-main);
  font-weight: 500;
}

nav a:hover {
  color: var(--accent-ice);
}

/* ================================
   HERO
   ================================ */

.hero {
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero p {
  font-size: 1.15rem;
}

/* ================================
   GLASS CARDS (BOOKS, PANELS)
   ================================ */

.card {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  margin: 1.5rem 0;
}

/* ================================
   BUTTONS / CTA
   ================================ */

button,
.btn,
.cta {
  background: linear-gradient(135deg, #5fdcff, #2cb7d8);
  color: #001018;
  border: none;
  border-radius: 999px;
  padding: 0.75em 1.75em;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 0 16px rgba(95, 220, 255, 0.55);
  cursor: pointer;
}

button:hover,
.btn:hover,
.cta:hover {
  background: linear-gradient(135deg, #9ef6ff, #5fdcff);
  box-shadow: 0 0 26px rgba(158, 246, 255, 0.75);
}

/* ================================
   FORMS / EMAIL SUBSCRIBE
   ================================ */

form {
  margin-top: 1.5rem;
}

input,
textarea {
  background: rgba(5, 20, 35, 0.85);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.7em 1em;
  margin-right: 0.5rem;
}

input::placeholder {
  color: #7fb1c9;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background: rgba(2, 10, 20, 0.75);
  color: var(--text-soft);
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-top: 5rem;
}

/* ================================
   HERO — BOLD + INTELLECTUAL
   ================================ */

.hero {
  min-height: 80vh;                 /* Slightly shorter */
  display: flex;
  align-items: flex-start;         /* Pushes content upward */
  justify-content: center;
  padding: 1.75rem 1.5rem 5rem;     /* Less top padding */
  text-align: center;


  /* Dark intellectual overlay (not mystical) */
  background: linear-gradient(
    180deg,
    rgba(0, 6, 12, 0.55) 0%,
    rgba(0, 10, 20, 0.35) 45%,
    rgba(0, 10, 20, 0.15) 100%
  );
}

.hero-inner {
  max-width: 960px;
  padding: 3.5rem 3rem;

  background: rgba(4, 18, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(12px);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(95, 220, 255, 0.12);
}

/* MAIN TITLE */
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ice);

  text-shadow:
    0 0 22px rgba(95, 220, 255, 0.55),
    0 0 48px rgba(95, 220, 255, 0.22);
}

/* DISRUPTIVE TAGLINE */
.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.22em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

/* SUPPORTING INTELLECTUAL STATEMENT */
.hero-subtext {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary stays safe but strong */
.hero-cta .primary {
  background: linear-gradient(135deg, #5fdcff, #2cb7d8);
  box-shadow: 0 0 26px rgba(95, 220, 255, 0.65);
}

/* Secondary stays calm and trustworthy */
.hero-cta .secondary {
  background: transparent;
  color: var(--accent-ice);
  border: 1px solid rgba(158, 246, 255, 0.45);
}

.hero-cta .secondary:hover {
  background: rgba(95, 220, 255, 0.14);
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .hero-inner {
    padding: 2.5rem 1.75rem;
  }

  .hero h1 {
    letter-spacing: 0.06em;
  }

  .hero-tagline {
    letter-spacing: 0.16em;
  }
}

.hero-author {
  margin-top: 1.4rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ef6ff;
  font-size: 1.05rem;
  font-weight: 700;       /* Bold */
  opacity: 0.95;         /* Strong visibility */
}

/* ================================
   BOOKS SECTION
   ================================ */

.books-section {
  padding: 6rem 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--accent-ice);
}

/* Horizontal row */
.books-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Individual book cards */
.book-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: center;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

/* Cover images */
.book-card img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* Titles */
.book-card h3 {
  color: var(--accent-ice);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Status label */
.book-status {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--accent-gold);
}

/* Description */
.book-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* FEATURED BOOK (EMERGENT TIME) */
.book-card.featured {
  transform: scale(1.05);
  border: 1px solid rgba(95, 220, 255, 0.45);

  box-shadow:
    0 0 40px rgba(95, 220, 255, 0.25),
    0 25px 80px rgba(0, 0, 0, 0.85);
}

.book-card.featured h3 {
  color: var(--accent-gold);
}

.book-card.featured .book-status {
  color: var(--accent-ice);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .books-row {
    grid-template-columns: 1fr;
  }

  .book-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .book-card.featured {
    transform: none;
  }
}

/* ================================
   MODAL PREVIEW STYLES
================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 15, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(5, 25, 40, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 720px;
  width: 90%;

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(95, 220, 255, 0.18);

  color: var(--text-soft);
  position: relative;
  text-align: center;
}

.modal-content h2 {
  color: var(--accent-ice);
  margin-bottom: 0.35rem;
  letter-spacing: 0.12em;
}

.modal-subtitle {
  color: var(--accent-gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.modal-body p {
  max-width: 620px;
  margin: 0 auto 1.2rem;
  line-height: 1.7;
  font-size: 1rem;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent-ice);
  cursor: pointer;
  opacity: 0.75;
}

.modal-close:hover {
  opacity: 1;
}

/* ================================
   QUALION CHRONICLES PREVIEW
   ================================ */

.chronicles-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.chronicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Individual article cards */
.chronicle-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chronicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

.chronicle-card h3 {
  color: var(--accent-ice);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.chronicle-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Category tag */
.chronicle-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* Chronicles CTA */
.chronicles-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.chronicles-cta p {
  margin-bottom: 1rem;
}

/* Mobile layout */
@media (max-width: 900px) {
  .chronicles-grid {
    grid-template-columns: 1fr;
  }

  .chronicle-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ================================
   ABOUT JEFF SECTION
   ================================ */

.about-section {
  padding: 6rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo {
  text-align: center;
}

.about-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(95, 220, 255, 0.22);
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* MOBILE STACK */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    text-align: left;
  }
}

/* ================================
   SPEAKING & MEDIA SECTION
   ================================ */

.speaking-section {
  padding: 6rem 1.5rem;
}

.speaking-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.speaking-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.75rem;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

.speaking-card h3 {
  color: var(--accent-ice);
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.speaking-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.speaking-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.speaking-card ul li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

/* SPEAKING CTA */
.speaking-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.speaking-cta p {
  margin-bottom: 1rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .speaking-grid {
    grid-template-columns: 1fr;
  }

  .speaking-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ================================
   SUBSCRIBE SECTION
   ================================ */

.subscribe-section {
  padding: 6rem 1.5rem;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.subscribe-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* FORM BOX */
.subscribe-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2.5rem;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(95, 220, 255, 0.18);

  text-align: center;
}

.subscribe-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.subscribe-form input {
  width: 100%;
  font-size: 1rem;
}

.subscribe-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .subscribe-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
  padding: 6rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* FORM BOX */
.contact-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2.5rem;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(95, 220, 255, 0.18);

  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-size: 1rem;
}

.contact-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ================================
   COACHING HERO CENTER FIX
   ================================ */

body .hero .hero-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   LIFE PASSION GOALS LOGO (COACHING PAGE)
   ================================ */

.lpg-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.lpg-logo {
  max-width: 160px;
  width: 100%;
  margin-bottom: 0.75rem;

  border-radius: 12px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(95, 220, 255, 0.25);
}

/* Slightly smaller on mobile */
@media (max-width: 600px) {
  .lpg-logo {
    max-width: 120px;
  }
}

/* ================================
   FEATURED BOOK EMPHASIS
   ================================ */

.book-card.featured {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 130, 0.75);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(255, 215, 130, 0.25);
}

.book-card.featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(255, 215, 130, 0.35);
}

/* ================================
   SITE FOOTER
   ================================ */

.site-footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem 2.5rem;
  background: rgba(1, 8, 15, 0.92);
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ✅ NEW */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-inner p {
  margin-bottom: 0.5rem;
}

.footer-inner a {
  color: var(--accent-ice);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* ================================
   SITE HEADER / NAV
   ================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(1, 10, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

/* BRAND BLOCK */

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle, rgba(255, 215, 130, 0.9), rgba(10, 40, 70, 0.95));
  color: #02060a;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;      /* ✅ centers subtitle under name */
  text-align: center;       /* ✅ centers the text itself */
}

.brand-title {
  font-weight: 800;          /* ✅ stronger author presence */
  font-size: 1.15rem;       /* ✅ subtle but noticeable bump */
  letter-spacing: 0.2em;    /* ✅ more premium spacing */
  text-transform: uppercase;
  color: var(--accent-ice);
}

.brand-subtitle {
  font-size: 0.78rem;
  opacity: 0.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* NAV LINKS */

.main-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav .nav-links a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.main-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent-ice);
  transition: width 0.2s ease;
}

.main-nav .nav-links a:hover::after {
  width: 100%;
}

/* Small screen - stack or shrink */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }
}

/* ================================
   CENTER STACKED NAV LINK
   ================================ */

.stacked-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;     /* ✅ adds vertical breathing room */
  gap: 0.1rem;          /* ✅ subtle spacing between lines */
}

/* Fix ONLY the Home anchor being hidden by the sticky header */
#hero {
  scroll-margin-top: 110px;
}

.contact-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.chronicles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.chronicle-card {
  padding: 1.25rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-soft);
  background: rgba(2, 10, 20, 0.85);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.chronicle-meta {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.chronicle-card h3 a {
  text-decoration: none;
  color: var(--accent-ice);
}

.chronicle-card h3 a:hover {
  text-decoration: underline;
}
/* Chronicles page hero alignment */
.chronicles-hero .hero-text {
  text-align: center;
  margin: 0 auto;
}
/* Reduce gap between Chronicles hero and index */
.chronicles-hero {
  padding-bottom: 2.5rem; /* slightly tighter than default hero */
}

.page-main .section:first-of-type {
  padding-top: 2rem; /* reduce top padding on the first section below hero */
}
/* === Chronicles page: force centered hero title + subtitle === */
.chronicles-hero .hero-inner,
.chronicles-hero .hero-text {
  width: 100%;
  text-align: center !important;
  justify-content: center;
  align-items: center;
}

.chronicles-hero .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch; /* keeps it readable */
}
/* === Chronicles page: tighten hero-to-index spacing === */
.chronicles-hero {
  padding-top: 2.25rem !important;
  padding-bottom: 1.25rem !important;
  margin-bottom: 0 !important;
}

.chronicles-hero + .section {
  padding-top: 1.25rem !important;
}
/* === Chronicles page: make index visible without scrolling === */
.chronicles-hero {
  padding-top: 1.25rem !important;
  padding-bottom: 0.35rem !important;
}

.chronicles-hero .hero-subtitle {
  margin-bottom: 0.25rem !important;
}

.chronicles-hero + .section {
  padding-top: 0.5rem !important;
}
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
}
/* Smaller secondary button for "View All" */
.btn.small {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 0.75rem;
}
.subscribe-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* === Chronicles page: remove huge hero height so index is visible === */
.chronicles-hero {
  min-height: unset !important;
  height: auto !important;
  padding-top: 1.25rem !important;
  padding-bottom: 0.5rem !important;
}

.chronicles-hero .hero-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.chronicles-hero .hero-subtitle {
  margin-bottom: 0.35rem !important;
}

.chronicles-hero + .section {
  padding-top: 0.75rem !important;
}
/* === Coaching page (Option B): warm neutral + teal accents === */
body.coaching-page {
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(40, 160, 175, 0.16), transparent 60%),
    radial-gradient(700px 500px at 85% 20%, rgba(215, 170, 95, 0.14), transparent 55%),
    linear-gradient(180deg, #f6f1e7 0%, #eef3f3 45%, #e6ecea 100%);
  background-attachment: fixed;
}
/* === Coaching page: increase text contrast on light background === */
body.coaching-page {
  color: #10212b; /* dark slate */
}

body.coaching-page h1,
body.coaching-page h2,
body.coaching-page h3,
body.coaching-page .brand-title,
body.coaching-page .section-title {
  color: #0b1a22; /* near-black navy */
}

body.coaching-page p,
body.coaching-page li,
body.coaching-page label,
body.coaching-page .hero-subtitle,
body.coaching-page .section-intro,
body.coaching-page .chronicle-meta {
  color: #10212b;
  opacity: 1; /* override any global fade */
}

/* Links inside content (not buttons) */
body.coaching-page a:not(.btn) {
  color: #0f4f63; /* deeper teal */
}

body.coaching-page a:not(.btn):hover {
  text-decoration: underline;
}
/* === Coaching page: lighten Youth Independence book cards for readability === */
body.coaching-page .books-section .book-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

body.coaching-page .books-section .book-card p,
body.coaching-page .books-section .book-card li {
  color: #10212b;
  opacity: 1;
}
.speaking-cta {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* === Coaching page: lighten the LifePassionGoals block (uses existing .subscribe-form) === */
body.coaching-page .subscribe-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-radius: 0.9rem;
  padding: 1.25rem 1.5rem;
}

/* Improve text contrast inside that block */
body.coaching-page .subscribe-form .subscribe-note {
  color: #10212b;
  opacity: 1;
}
/* === Coaching page: make the TOP hero block match the Youth Independence book cards === */
body.coaching-page .hero-inner {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  color: #10212b;
}

/* Remove the neon/glow hero styling just on coaching page */
body.coaching-page .hero h1 {
  color: #0b1a22;
  text-shadow: none;
}

body.coaching-page .hero-tagline {
  color: #0f4f63;
}

body.coaching-page .hero-subtext {
  color: #10212b;
}
/* === Coaching page: make footer blend into the same light background as the page === */
body.coaching-page .site-footer {
  background: rgba(255, 255, 255, 0.86) !important;  /* same “card” look */
  border-top: 1px solid rgba(0, 0, 0, 0.10) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: none !important;
}

/* Optional: tighten the visual “drop-off” above the footer on coaching page */
body.coaching-page .site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* === Coaching page: tighten footer vertical spacing === */
body.coaching-page .site-footer {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

body.coaching-page .footer-inner p {
  margin: 0.25rem 0 !important;
}
