/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF6F1;
  --cream-dark: #F5EDE4;
  --brown: #2C1810;
  --brown-light: #8B7355;
  --brown-dark: #3B2F2F;
  --gold: #B8860B;
  --gold-light: #D4A574;
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.04), 0 1px 2px rgba(44, 24, 16, 0.03);
  --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.06), 0 2px 4px rgba(44, 24, 16, 0.04);
  --shadow-lg: 0 10px 30px rgba(44, 24, 16, 0.08);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

body {
  background-color: var(--cream);
  color: var(--brown);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Navbar ===== */
.site-nav {
  background-color: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo span {
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.nav-links a,
.nav-links .menu-item a {
  color: var(--brown-light);
  transition: color 0.2s;
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a:hover,
.nav-links .menu-item a:hover {
  color: var(--gold);
}

.nav-links .menu-item {
  list-style: none;
}

/* Journal nav link — premium pill style */
.nav-journal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--cream) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
  line-height: 1.3;
}

.nav-journal-link:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(184, 134, 11, 0.3);
  color: var(--cream) !important;
}

/* Journey nav link — clean distinct style */
.nav-journey-link {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: color 0.2s, opacity 0.2s;
}

.nav-journey-link:hover {
  color: var(--gold-light) !important;
  opacity: 0.85;
}

/* Mobile journey link */
.mobile-menu .nav-journey-link {
  display: block;
  color: var(--gold) !important;
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  border-top: 1px solid rgba(212, 165, 116, 0.12);
  margin-top: 0.25rem;
}

.mobile-menu .nav-journey-link:hover {
  color: var(--gold-light) !important;
  background-color: rgba(184, 134, 11, 0.06);
}

/* Mobile journal link */
.mobile-menu .nav-journal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
}

/* Books dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  background: none;
  border: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--brown-light);
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown > button:hover {
  color: var(--gold);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu-inner {
  background-color: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  min-width: 210px;
}

.dropdown-menu-inner a {
  display: block;
  padding: 0.55rem 1.15rem;
  color: var(--brown-light);
  font-size: 0.85rem;
  transition: all 0.15s;
}

.dropdown-menu-inner a:hover {
  color: var(--gold);
  background-color: rgba(184, 134, 11, 0.06);
}

/* Mobile menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--brown-light);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a,
.mobile-menu .menu-item a {
  display: block;
  color: var(--brown-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.15s;
}

.mobile-menu a:hover,
.mobile-menu .menu-item a:hover {
  color: var(--gold);
  background-color: rgba(184, 134, 11, 0.06);
}

.mobile-menu .menu-item {
  list-style: none;
}


/* ===== Hero ===== */
.hero {
  background: linear-gradient(170deg, var(--brown-dark) 0%, #2A2420 100%);
  color: var(--cream);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.3;
}

.hero-inner {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold-light);
  display: block;
  font-style: italic;
  font-size: 0.9em;
  margin-top: 0.15em;
}

.hero p {
  color: rgba(250, 246, 241, 0.75);
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 34rem;
  margin: 0 auto 2.5rem;
}

.hero .btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
}

.hero .btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-hero {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  border: 1.5px solid rgba(250, 246, 241, 0.3);
  transition: all 0.2s;
}

.btn-outline-hero:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background-color: rgba(212, 165, 116, 0.08);
}

.hero-sampler-link {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.hero-sampler-link a {
  color: rgba(250, 246, 241, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.hero-sampler-link a:hover {
  color: var(--gold-light);
}

/* ===== Three Movements ===== */
.movements {
  padding: 5rem 1.5rem;
  background-color: var(--cream);
}

.movements-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.movements h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.movements > .movements-inner > p {
  color: var(--brown-light);
  max-width: 34rem;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.7;
}

.movements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.movement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.movement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.movement-card .icon {
  width: 3.25rem;
  height: 3.25rem;
  background-color: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(184, 134, 11, 0.25);
}

.movement-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.movement-card p {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== Book Cards ===== */
.books-section {
  padding: 5rem 1.5rem;
  background-color: var(--cream-dark);
}

.books-inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.books-inner > h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.books-subtitle {
  color: var(--brown-light);
  max-width: 36rem;
  margin: -2rem auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.book-card {
  background-color: var(--cream);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}

.book-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.book-card:hover::before {
  opacity: 1;
}

.book-card .book-number {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.book-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.book-card .tagline {
  color: var(--brown-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-published {
  background-color: var(--gold);
  color: var(--cream);
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.25);
}

.badge-written {
  background-color: var(--cream-dark);
  color: var(--brown-light);
  border: 1px solid rgba(212, 165, 116, 0.25);
}

.badge-coming-soon {
  background-color: var(--cream-dark);
  color: var(--brown-light);
}

.book-card .learn-more {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}

.book-card .learn-more:hover {
  color: var(--gold-light);
}

/* ===== Journal Promo ===== */
.journal-promo {
  padding: 5rem 1.5rem;
  background: linear-gradient(170deg, var(--brown-dark) 0%, #2A2420 100%);
  color: var(--cream);
  position: relative;
}

.journal-promo::before,
.journal-promo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.2;
}

.journal-promo::before { top: 0; }
.journal-promo::after { bottom: 0; }

.journal-promo-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.journal-promo-content {
  text-align: center;
}

.promo-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--cream);
  background-color: var(--gold);
  padding: 0.2rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.journal-promo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.journal-promo p {
  color: rgba(250, 246, 241, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.promo-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.promo-features span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 600;
}

.btn-promo {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
}

.btn-promo:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
  color: var(--cream);
}

/* ===== The Journey Is Always Today Promo ===== */
.journey-promo {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #3B2F2F 0%, #4A3C2C 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
}

.journey-promo::before,
.journey-promo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.2;
}

.journey-promo::before { top: 0; }
.journey-promo::after { bottom: 0; }

.journey-promo-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.journey-promo .promo-label {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.journey-promo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.journey-tagline {
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.journey-promo p {
  color: #D4C5A9;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.journey-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.journey-actions .btn {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.journey-actions .btn-outline {
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
}

/* ===== About Teaser ===== */
.about-teaser {
  padding: 5rem 1.5rem;
  background-color: var(--cream);
}

.about-teaser-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}

.about-teaser h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-teaser p {
  color: var(--brown-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.about-teaser .btn-outline {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}

.about-teaser .btn-outline:hover {
  background-color: var(--gold);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.25);
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(170deg, var(--brown-dark) 0%, #241E1A 100%);
  color: var(--cream);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.2;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: var(--gold-light);
}

.footer-brand p {
  color: rgba(250, 246, 241, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 22rem;
}

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.footer-links a {
  display: block;
  color: rgba(250, 246, 241, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 241, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250, 246, 241, 0.35);
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: rgba(250, 246, 241, 0.45);
  border: 1px solid rgba(250, 246, 241, 0.1);
  transition: all 0.2s;
}

.footer-social a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background-color: rgba(212, 165, 116, 0.1);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

/* ===== Page Templates ===== */
.page-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.page-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ===== About Page ===== */
.about-photo {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212, 165, 116, 0.2);
  display: block;
  margin: 0 auto 2.5rem;
  box-shadow: 0 6px 20px rgba(44, 24, 16, 0.1);
}

.about-content p {
  color: var(--brown-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold-light);
}

.page-subtitle {
  text-align: center;
  color: var(--brown-light);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Social Icon Buttons (contact page) */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 165, 116, 0.2);
  color: var(--brown-light) !important;
  background-color: var(--cream);
  transition: all 0.2s;
  position: relative;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background-color: rgba(184, 134, 11, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Tooltip on hover */
.social-icon::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: var(--brown-dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.6rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.social-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Book Detail Page ===== */
.book-hero {
  background: linear-gradient(170deg, var(--brown-dark) 0%, #2A2420 100%);
  color: var(--cream);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.book-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.25;
}

.book-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.book-hero .book-number {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.book-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.book-hero .subtitle {
  color: rgba(250, 246, 241, 0.7);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.book-hero .description {
  color: rgba(250, 246, 241, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 36rem;
  margin: 0 auto;
}

.book-framework {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.book-framework-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.framework-step {
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.12);
  border-left: 3px solid var(--gold-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.framework-step:hover {
  box-shadow: var(--shadow-md);
}

.framework-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.framework-step p {
  color: var(--brown-light);
  line-height: 1.7;
}

.book-parts {
  padding: 4rem 1.5rem;
  background-color: var(--cream-dark);
}

.book-parts-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.book-parts h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2rem;
  text-align: center;
}

.part-item {
  margin-bottom: 1.5rem;
}

.part-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.part-item p {
  color: var(--brown-light);
  font-size: 0.95rem;
}

.book-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}

.book-cta .btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.25);
}

.book-cta .btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(184, 134, 11, 0.3);
}

/* ===== Book Page — Journal Cross-Sell ===== */
.book-journal-promo {
  padding: 4rem 1.5rem;
  background: linear-gradient(170deg, var(--brown-dark) 0%, #2A2420 100%);
  color: var(--cream);
  position: relative;
}

.book-journal-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.2;
}

.book-journal-promo-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.book-journal-promo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.book-journal-promo p {
  color: rgba(250, 246, 241, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.book-journal-promo-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.book-journal-promo-features span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 600;
}

.book-journal-promo-note {
  font-size: 0.88rem;
  color: rgba(250, 246, 241, 0.55);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.book-journal-promo-note strong {
  color: rgba(250, 246, 241, 0.8);
}

.book-journal-promo-btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
}

.book-journal-promo-btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
  color: var(--cream);
}

/* ===== Blog ===== */
.blog-list {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.blog-list h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.blog-list > p {
  color: var(--brown-light);
  margin-bottom: 3rem;
}

.blog-post-preview {
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.blog-post-preview .date {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
}

.blog-post-preview h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.blog-post-preview h2 a {
  color: var(--brown);
  transition: color 0.2s;
}

.blog-post-preview h2 a:hover {
  color: var(--gold);
}

.blog-post-preview .excerpt {
  color: var(--brown-light);
  margin-bottom: 0.75rem;
}

.blog-post-preview .read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}

.blog-post-preview .read-more:hover {
  color: var(--gold-light);
}

/* Single Blog Post */
.single-post {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.single-post .post-date {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
}

.single-post h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2rem;
}

.prose-brown {
  color: var(--brown-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.prose-brown h2 {
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose-brown h3 {
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose-brown p {
  margin-bottom: 1.25rem;
}

.prose-brown blockquote {
  border-left: 3px solid var(--gold-light);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--brown);
  background-color: rgba(184, 134, 11, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prose-brown em {
  color: var(--brown);
}

.prose-brown strong {
  color: var(--brown);
  font-weight: 700;
}

.prose-brown ul, .prose-brown ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.prose-brown li {
  margin-bottom: 0.5rem;
}

.prose-brown a {
  color: var(--gold);
  text-decoration: underline;
}

.prose-brown a:hover {
  color: var(--gold-light);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero {
    padding: 8rem 2rem 7rem;
  }

  .movements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .books-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== Accessibility: Skip to Content ===== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.6rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

/* Focus visible for keyboard nav */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== 404 Page ===== */
.page-404 {
  max-width: 36rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.page-404 h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.page-404 > p {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.page-404-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-404-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
  text-decoration: none;
}

.btn-404-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}

.btn-404-secondary {
  display: inline-block;
  color: var(--brown-light);
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid rgba(212, 165, 116, 0.2);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-404-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold);
  background-color: rgba(184, 134, 11, 0.04);
}

.page-404-also {
  font-size: 0.82rem;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.page-404-books {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.page-404-book {
  font-size: 0.88rem;
  color: var(--brown-light);
  transition: color 0.2s;
  text-decoration: none;
}

.page-404-book:hover {
  color: var(--gold);
}

/* ===== Search Page ===== */
.search-query {
  text-align: center;
  color: var(--brown-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result {
  background-color: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
}

.search-result:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.search-result h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.search-result h2 a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s;
}

.search-result h2 a:hover {
  color: var(--gold);
}

.search-excerpt {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.search-read-more {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.search-empty {
  text-align: center;
  padding: 2rem 0;
}

.search-empty p {
  color: var(--brown-light);
  margin-bottom: 1.5rem;
}

.search-suggestions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== Thank You Page ===== */
.fwk-thankyou {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.fwk-thankyou h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.fwk-thankyou p {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fwk-thankyou-order {
  font-size: 0.85rem;
  color: var(--brown-light);
}

.btn-thankyou {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.8rem 2.25rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.25);
}

.btn-thankyou:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(184, 134, 11, 0.3);
}

/* ===== My Account Dashboard ===== */
.fwk-dashboard-greeting {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--brown);
}

.fwk-dashboard-journal,
.fwk-dashboard-promo {
  text-align: center;
  background-color: rgba(184, 134, 11, 0.04);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}

.fwk-dashboard-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.fwk-dash-stat {
  text-align: center;
}

.fwk-dash-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.fwk-dash-stat-label {
  font-size: 0.78rem;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fwk-dashboard-cta {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream) !important;
  padding: 0.7rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.fwk-dashboard-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}

.fwk-dashboard-promo h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.fwk-dashboard-promo p {
  color: var(--brown-light);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.fwk-dashboard-links {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}

.fwk-dashboard-links a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.fwk-dashboard-links a:hover {
  text-decoration: underline;
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--brown-dark);
  color: rgba(250, 246, 241, 0.85);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  z-index: 9998;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.85rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}

.cookie-consent p {
  margin: 0;
  line-height: 1.5;
}

.cookie-accept {
  background-color: var(--gold);
  color: var(--cream);
  border: none;
  border-radius: 2rem;
  padding: 0.45rem 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: var(--gold-light);
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Email Signup ===== */
.email-signup {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(170deg, var(--brown-dark) 0%, #2A2420 100%);
  color: var(--cream);
  position: relative;
}

.email-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.2;
}

.email-signup-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.email-signup h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.email-signup-subtext {
  color: rgba(250, 246, 241, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.email-signup-fields {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-signup-input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 2rem;
  background: rgba(250, 246, 241, 0.08);
  color: var(--cream);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.email-signup-input::placeholder {
  color: rgba(250, 246, 241, 0.4);
}

.email-signup-input:focus {
  border-color: var(--gold);
  background: rgba(250, 246, 241, 0.12);
}

.email-signup-name {
  flex: 0 1 10rem;
}

.email-signup-email {
  flex: 1 1 14rem;
}

.email-signup-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2rem;
  background-color: var(--gold);
  color: var(--cream);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
}

.email-signup-btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
}

.email-signup-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.email-signup-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: rgba(250, 246, 241, 0.7);
}

.email-signup-msg-error {
  color: #e8a0a0;
}

.email-signup-success {
  text-align: center;
}

.email-signup-welcome {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
}

.email-signup-download {
  display: inline-block;
  background-color: var(--gold);
  color: var(--cream);
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
}

.email-signup-download:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
  color: var(--cream);
}

.page-404-signup {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-404-signup-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--brown-light);
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-404-signup .email-signup {
  padding-top: 1.5rem;
}

@media (max-width: 600px) {
  .email-signup-fields {
    flex-direction: column;
  }

  .email-signup-name,
  .email-signup-email {
    flex: 1 1 auto;
  }

  .email-signup-btn {
    width: 100%;
  }
}

/* ===== Print Styles ===== */
@media print {
  .site-nav,
  .site-footer,
  .cookie-consent,
  .skip-to-content {
    display: none !important;
  }

  body {
    background: #FFF;
    color: #000;
    font-size: 12pt;
  }

  a[href]::after {
    content: none;
  }
}
