.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ═══════════════════════════════════════════════════
   My Truth Is… — Global Stylesheet
   © 2026 Joshua Mackintosh. All rights reserved.
   ═══════════════════════════════════════════════════ */


:root {
  --warm-white: #F5F0EB;
  --cream: #EDE7DF;
  --wood-light: #C4A265;
  --wood-mid: #A8853C;
  --wood-dark: #7A5E2A;
  --charcoal: #3A3A3A;
  --soft-gray: #6B6B6B;
  --text-dark: #2C2C2C;
  --floor-tan: #D4B896;
  --accent-gold: #B8942E;
  --white: #FFFFFF;
  --shadow: rgba(60, 45, 20, 0.15);
  --danger: #9B3B3B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; }
a { color: var(--wood-mid); }

/* ─── SELECTION ─── */
::selection {
  background: rgba(168, 133, 60, 0.2);
  color: var(--text-dark);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--wood-mid); }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--soft-gray);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--wood-mid);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--wood-mid); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--wood-mid); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245, 240, 235, 0.98);
  border: 1px solid rgba(196, 162, 101, 0.2);
  padding: 0.8rem 0;
  min-width: 280px;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(60, 45, 20, 0.12);
  margin-top: 4px;
}

.nav-dropdown-wrap:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block !important;
  padding: 7px 22px !important;
  font-size: 0.88rem !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap;
}

.nav-dropdown a::after { display: none !important; }

.nav-dropdown a:hover {
  background: rgba(196, 162, 101, 0.06);
}

/* ─── PAGE HEADER (subpages) ─── */
.page-header {
  padding: 140px 2rem 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(196, 162, 101, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--wood-mid);
  margin-bottom: 1rem;
}

.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.page-header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--soft-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header-divider {
  width: 50px;
  height: 1.5px;
  background: var(--wood-light);
  margin: 2rem auto 0;
}

/* ─── CONTENT SECTIONS ─── */
.section { padding: 80px 2rem; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }

.section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-inner--wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-mid);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* ─── PROSE ─── */
.prose p {
  font-size: 1.05rem;
  color: var(--soft-gray);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.prose p:last-child { margin-bottom: 0; }

.prose em { color: var(--text-dark); }

.prose blockquote {
  margin: 2rem 0;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--wood-light);
  background: rgba(196, 162, 101, 0.04);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wood-dark);
  line-height: 1.7;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wood-mid);
  margin: 2.5rem 0 1rem;
}

.prose h3:first-child { margin-top: 0; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.15);
  padding: 2rem;
  transition: all 0.4s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(60, 45, 20, 0.1);
  border-color: var(--wood-light);
}

/* ─── PROMPT PREVIEW ─── */
.prompt-list {
  list-style: none;
  margin: 1.5rem 0;
}

.prompt-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.1);
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
}

.prompt-item:last-child { border-bottom: none; }

.prompt-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wood-mid);
  white-space: nowrap;
  min-width: 50px;
}

.prompt-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ─── CHECK-IN QUESTIONS ─── */
.checkin-card {
  background: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.15);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

.checkin-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-mid);
  margin-bottom: 1.2rem;
}

.checkin-q {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
  line-height: 1.5;
}

.checkin-q:last-child { border-bottom: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 14px 32px;
  transition: all 0.3s ease;
  border: 2px solid var(--wood-mid);
  cursor: pointer;
}

.btn--primary {
  color: var(--white);
  background: var(--wood-mid);
}

.btn--primary:hover {
  background: transparent;
  color: var(--wood-mid);
}

.btn--outline {
  color: var(--wood-mid);
  background: transparent;
}

.btn--outline:hover {
  background: var(--wood-mid);
  color: var(--white);
}

.btn--small {
  font-size: 0.85rem;
  padding: 10px 22px;
}

.btn svg { width: 18px; height: 18px; }

/* ─── BOOK NAV (prev/next) ─── */
.book-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.book-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soft-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.book-nav a:hover { color: var(--wood-mid); }

/* ─── COPYRIGHT NOTICE ─── */
.copyright-notice {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: rgba(155, 59, 59, 0.04);
  border: 1px solid rgba(155, 59, 59, 0.12);
  border-left: 3px solid var(--danger);
}

.copyright-notice p {
  font-size: 0.88rem !important;
  color: var(--soft-gray) !important;
  line-height: 1.7 !important;
}

.copyright-notice strong {
  color: var(--danger);
  font-weight: 600;
}

/* ─── PROTECTED BADGE ─── */
.protected-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--danger);
  background: rgba(155, 59, 59, 0.06);
  border: 1px solid rgba(155, 59, 59, 0.15);
  padding: 6px 14px;
  margin-bottom: 1.5rem;
}

.protected-badge svg { width: 14px; height: 14px; }

/* ─── BOOK GRID (index page) ─── */
.books-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.book-card {
  background: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.15);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.book-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.book-card:hover {
  box-shadow: 0 12px 40px rgba(60, 45, 20, 0.12);
  transform: translateY(-4px);
  border-color: var(--wood-light);
}

.book-card.visible:hover { transform: translateY(-4px); }

.book-number {
  position: absolute;
  top: -1px;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196, 162, 101, 0.12);
  line-height: 1;
  pointer-events: none;
}

.book-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-mid);
  margin-bottom: 0.8rem;
}

.book-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.book-card-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--soft-gray);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.book-card-desc {
  font-size: 0.92rem;
  color: var(--soft-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.book-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wood-mid);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.book-card-link:hover { border-bottom-color: var(--wood-mid); }
.book-card-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.book-card-link:hover svg { transform: translateX(3px); }

/* ─── FILTER ─── */
.book-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.filter-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border: 1.5px solid rgba(196, 162, 101, 0.3);
  background: transparent;
  color: var(--soft-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--wood-mid);
  border-color: var(--wood-mid);
  color: var(--white);
}

/* ─── CONTACT FORM ─── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft-gray);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.25);
  padding: 12px 16px;
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--wood-mid);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ─── TERMS LIST ─── */
.terms-list {
  counter-reset: terms;
  list-style: none;
  margin: 1.5rem 0;
}

.terms-list li {
  counter-increment: terms;
  padding: 1rem 0 1rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.1);
  font-size: 0.98rem;
  color: var(--soft-gray);
  line-height: 1.8;
}

.terms-list li::before {
  content: counter(terms) ".";
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--wood-mid);
  margin-right: 0.8rem;
}

/* ─── FOOTER ─── */
.footer {
  margin-top: auto;
  padding: 60px 2rem;
  background: var(--charcoal);
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.footer-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(237, 231, 223, 0.6);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(237, 231, 223, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--wood-light); }

.footer-line {
  width: 40px;
  height: 1px;
  background: var(--wood-mid);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: rgba(237, 231, 223, 0.35);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-menu-btn { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 235, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  }

  .nav-links.open { display: flex; }

  .nav-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 0 1rem !important;
    margin-top: 0.5rem !important;
    display: block !important;
    max-height: 200px;
    overflow-y: auto;
  }

  .books-grid { grid-template-columns: 1fr; }

  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-grid .hero-img-wrap { order: -1; }
  .hero-grid .hero-img-wrap img { max-width: 260px !important; }

  .book-filter { gap: 0.3rem; }
  .filter-btn { font-size: 0.75rem; padding: 6px 12px; }

  .book-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .page-header { padding: 120px 1.5rem 40px; }
  .section { padding: 60px 1.5rem; }

  .footer-links { gap: 1rem; }
}

/* ─── ANTI-COPY PROTECTION ─── */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* ═══════════════════════════════════════════════════
   My Truth Is… — Book Preview / Journal Page Styles
   Renders pages to look like the actual 6×9 paperback
   © 2026 Joshua Mackintosh. All rights reserved.
   ═══════════════════════════════════════════════════ */

/* ─── BOOK PREVIEW LAYOUT ─── */
.bp-section .section-inner--wide {
  max-width: 1100px;
}

.bp-intro {
  margin-bottom: 2rem;
}

.bp-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--soft-gray);
  margin-top: 0.8rem;
}

/* ─── JOURNAL PAGE CAROUSEL ─── */
.jp-carousel-wrap {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 480px;
}

.jp-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.jp-carousel-wrap {
  overflow: hidden;
  border-radius: 2px;
}

/* ─── INDIVIDUAL JOURNAL PAGE ─── */
.journal-page {
  min-width: 100%;
  aspect-ratio: 6 / 9;
  background: #FDFCFA;
  border: 1px solid #E8E0D4;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'Lora', Georgia, serif;
  box-shadow:
    inset 0 0 40px rgba(196, 162, 101, 0.03),
    4px 4px 20px rgba(60, 45, 20, 0.08),
    0 1px 3px rgba(60, 45, 20, 0.06);
  overflow: hidden;
}

/* Paper texture overlay */
.journal-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1.55rem,
      rgba(196, 162, 101, 0.0) 1.55rem
    );
  pointer-events: none;
  z-index: 1;
}

/* Subtle page edge shadow */
.journal-page::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(to left, rgba(0,0,0,0.04), transparent);
  pointer-events: none;
}

/* ─── TITLE PAGE ─── */
.title-page {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #FDFCFA;
  padding: 3rem 2.5rem;
}

.title-page::before {
  background: none !important;
}

.jp-series {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--wood-mid);
  margin-bottom: 3rem;
}

.jp-book-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--soft-gray);
  margin-bottom: 1rem;
}

.jp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.jp-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--soft-gray);
  line-height: 1.5;
  max-width: 80%;
  margin: 0 auto;
}

.jp-author {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-top: 3rem;
  letter-spacing: 0.03em;
}

/* ─── PAGE TYPOGRAPHY ─── */
.jp-section-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.jp-body {
  font-size: 0.78rem;
  color: var(--soft-gray);
  line-height: 1.75;
}

.jp-body-small {
  font-size: 0.7rem;
  color: var(--soft-gray);
  line-height: 1.7;
}

/* ─── GUIDELINES BOX ─── */
.jp-guidelines-box {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(196, 162, 101, 0.04);
  border: 1px solid rgba(196, 162, 101, 0.1);
}

.jp-guidelines-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-mid);
  margin-bottom: 0.5rem;
}

.jp-guideline {
  font-size: 0.7rem;
  color: var(--soft-gray);
  padding: 0.2rem 0;
  padding-left: 0.8rem;
  position: relative;
  line-height: 1.6;
}

.jp-guideline::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--wood-light);
  font-weight: bold;
}

/* ─── OVERVIEW BOX ─── */
.jp-overview-box {
  margin: 1rem 0;
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--wood-light);
}

.jp-overview-line {
  font-size: 0.75rem;
  color: var(--text-dark);
  padding: 0.25rem 0;
  line-height: 1.6;
}

.jp-divider {
  width: 30px;
  height: 1px;
  background: var(--wood-light);
  margin: 1rem 0;
}

/* ─── DAY PAGE ─── */
.day-page {
  padding: 2rem 2rem 1.5rem;
}

.day-page::before {
  /* Journal lines */
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1.42rem,
      rgba(196, 162, 101, 0.12) 1.42rem,
      rgba(196, 162, 101, 0.12) calc(1.42rem + 1px)
    ) !important;
  top: 6.5rem;
}

.jp-day-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--wood-mid);
  margin-bottom: 1rem;
}

.jp-prompt {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.jp-journal-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding-top: 0.3rem;
}

.jp-line {
  height: 1.42rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.12);
  width: 100%;
}

.jp-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-style: italic;
  color: var(--wood-mid);
  text-align: center;
  margin-top: auto;
  padding-top: 0.5rem;
  position: relative;
  z-index: 2;
}

.jp-quote::before {
  content: '— ';
}

/* ─── PAGE NUMBER ─── */
.jp-page-num {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  color: rgba(107, 107, 107, 0.4);
  letter-spacing: 0.1em;
}

/* ─── LOCKED PAGE ─── */
.locked-page {
  position: relative;
}

.jp-locked-preview {
  flex: 1;
  padding: 0.5rem 0;
}

.jp-toc-entry {
  display: flex;
  gap: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.06);
  font-size: 0.75rem;
  color: var(--soft-gray);
}

.jp-toc-day {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--wood-mid);
  min-width: 40px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.jp-toc-prompt {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--text-dark);
}

.jp-locked-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253, 252, 250, 0) 0%,
    rgba(253, 252, 250, 0.6) 25%,
    rgba(253, 252, 250, 0.92) 50%,
    rgba(253, 252, 250, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 5;
}

.jp-lock-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.08);
  border: 1.5px solid rgba(196, 162, 101, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.jp-lock-icon svg {
  width: 22px;
  height: 22px;
  color: var(--wood-mid);
}

.jp-lock-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.jp-lock-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--soft-gray);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─── CAROUSEL NAVIGATION ─── */
.jp-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.jp-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 162, 101, 0.3);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.jp-nav-btn:hover {
  background: var(--wood-mid);
  border-color: var(--wood-mid);
}

.jp-nav-btn:hover svg { stroke: var(--white); }

.jp-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--soft-gray);
  transition: stroke 0.3s;
}

.jp-page-indicator {
  display: flex;
  gap: 6px;
  align-items: center;
}

.jp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.jp-dot.active {
  background: var(--wood-mid);
  transform: scale(1.2);
}

.jp-dot:hover {
  background: var(--wood-light);
}

/* ─── BOOK DETAILS ─── */
.bp-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bp-detail-card {
  background: var(--warm-white);
  border: 1px solid rgba(196, 162, 101, 0.12);
  padding: 1.8rem;
}

.bp-detail-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wood-mid);
  margin-bottom: 1rem;
}

.bp-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-spec {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
  font-size: 0.88rem;
  color: var(--text-dark);
}

.bp-spec:last-child { border-bottom: none; }

.bp-spec-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--soft-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bp-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bp-pill {
  display: block;
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}

.bp-pill:last-child { border-bottom: none; }

.bp-overview-line {
  font-size: 0.9rem;
  color: var(--soft-gray);
  line-height: 1.7;
  padding: 0.3rem 0;
}

.bp-cta-card {
  background: var(--warm-white);
  border: 1px solid rgba(196, 162, 101, 0.12);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bp-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.bp-nav-link:hover { color: var(--wood-mid); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .jp-carousel-wrap {
    max-width: 100%;
  }

  .journal-page {
    padding: 1.8rem 1.5rem 1.5rem;
  }

  .jp-title { font-size: 1.4rem; }
  .jp-prompt { font-size: 0.85rem; }
  
  .bp-details {
    grid-template-columns: 1fr;
  }

  .title-page {
    padding: 2rem 1.5rem;
  }

  .jp-series { margin-bottom: 2rem; }
  .jp-author { margin-top: 2rem; }
}

@media (max-width: 480px) {
  .journal-page {
    padding: 1.2rem 1rem 1rem;
    aspect-ratio: 5.5 / 9;
  }

  .jp-body { font-size: 0.68rem; }
  .jp-title { font-size: 1.2rem; }
  .jp-subtitle { font-size: 0.85rem; }
  .jp-prompt { font-size: 0.78rem; }
  .jp-line { height: 1.2rem; }
}/* End custom CSS */