/* =============================================================
   Dr. Babajide Ogunseinde — Author Platform
   Theme CSS v2.0 — KPH Studio
   Design: Playfair Display + DM Sans | Navy + Gold | Editorial
   ============================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:        #07111C;
  --navy-mid:    #0D1A29;
  --navy-card:   #111F30;
  --navy-light:  #172438;
  --gold:        #C8A24A;
  --gold-light:  #E0BE78;
  --gold-glow:   rgba(200,162,74,0.14);
  --gold-border: rgba(200,162,74,0.22);
  --cream:       #F5F0E8;
  --cream-mid:   #EAE3D5;
  --grey-warm:   #B8B0A2;
  --grey-mid:    #7A8898;
  --white:       #FAFAF7;
  --text-light:  rgba(250,250,247,0.68);
  --container:   1320px;
  --gutter:      clamp(24px, 5vw, 80px);
  --section-pad: clamp(80px, 12vh, 140px);
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.admin-bar #main-nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar #main-nav { top: 46px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ── GRAIN TEXTURE ──────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900; line-height: 1.03; letter-spacing: -0.025em;
}
.display-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
}
.display-md {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
}
.display-sm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600; line-height: 1.3; letter-spacing: -0.01em;
}
.label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.prose { font-size: 15.5px; line-height: 1.82; color: var(--text-light); }
.prose p + p { margin-top: 1.2em; }
.prose h2, .prose h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white); margin: 1.6em 0 0.6em;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatBook {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(-2deg); }
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.anim-fade-up { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-fade-in { opacity: 0; animation: fadeIn 1s ease forwards; }
.d-0 { animation-delay: 0s; }
.d-1 { animation-delay: 0.14s; }
.d-2 { animation-delay: 0.28s; }
.d-3 { animation-delay: 0.44s; }
.d-4 { animation-delay: 0.60s; }
.d-5 { animation-delay: 0.78s; }
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-fade-in { animation: none; opacity: 1; }
}

/* ── SECTION TYPOGRAPHY UTILITIES ───────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.page-header { background: var(--navy); padding: clamp(100px,10vw,140px) var(--gutter) clamp(48px,5vw,80px); }
.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
}
.page-header__intro {
  font-size: clamp(15px,1.5vw,18px);
  color: rgba(250,250,247,0.72);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 18px;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.container--narrow { max-width: 780px; }
.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-pad--sm { padding-top: calc(var(--section-pad) * 0.55); padding-bottom: calc(var(--section-pad) * 0.55); }

/* ── DIVIDERS ───────────────────────────────────────────────── */
.gold-line { width: 48px; height: 2px; background: var(--gold); }
.gold-hr {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  border: none; margin: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn, .dro-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; line-height: 1;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:focus-visible, .dro-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active, .dro-btn:active { transform: translateY(1px) !important; }

.btn-primary, .dro-btn--primary {
  padding: 16px 36px; background: var(--gold); color: var(--navy);
}
.btn-primary:hover, .dro-btn--primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,162,74,0.32), 0 4px 12px rgba(200,162,74,0.18);
  color: var(--navy);
}
.btn-ghost, .dro-btn--outline {
  padding: 15px 35px; background: transparent; color: var(--white);
  border: 1px solid rgba(250,250,247,0.22);
}
.btn-ghost:hover, .dro-btn--outline:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-3px);
}
.btn-dark {
  padding: 15px 35px; background: var(--navy); color: var(--white);
  border: 1px solid var(--gold-border);
}
.btn-dark:hover {
  background: var(--navy-card); border-color: var(--gold);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.dro-btn--gold, .btn-gold {
  padding: 16px 36px; background: var(--gold); color: var(--navy);
}
.dro-btn--gold:hover, .btn-gold:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,162,74,0.32); color: var(--navy);
}
.btn--full, .dro-btn--full { width: 100%; justify-content: center; }
.btn--sm, .dro-btn--sm { font-size: 11px; padding: 13px 24px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); height: 76px;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, box-shadow 0.5s;
  background: transparent; border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  background: rgba(7,17,28,0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 4px;
  border: 0.5px solid rgba(200,162,74,0.28);
}
.logo-mark span { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold); line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 14.5px; font-weight: 600; color: var(--white); letter-spacing: 0.01em; line-height: 1; display: block; }
.logo-title { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); line-height: 1; display: block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(250,250,247,0.6); text-decoration: none; position: relative; padding-bottom: 4px; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--gold); transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.current-menu-item::after { width: 100%; }
.nav-links a.current-menu-item { color: var(--white); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.nav-cta {
  display: inline-block !important; font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase; color: var(--navy) !important;
  background: var(--gold); padding: 10px 22px !important; text-decoration: none;
  transition: background 0.25s, transform 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); color: var(--navy) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(7,17,28,0.97); backdrop-filter: blur(20px);
  padding: 28px 24px 36px; border-bottom: 1px solid var(--gold-border); z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; font-size: 14px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,247,0.7); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.nav-cta-mobile { color: var(--gold) !important; margin-top: 8px; border-bottom: none; }

@media (max-width: 900px) {
  .nav-desktop { display: none !important; }
  .hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 76px;
  background:
    radial-gradient(ellipse 80% 80% at 72% 50%, rgba(200,162,74,0.055) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 18% 92%, rgba(20,50,90,0.45) 0%, transparent 50%),
    radial-gradient(ellipse 45% 55% at 92% 5%, rgba(30,70,120,0.2) 0%, transparent 45%),
    var(--navy);
}
#hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px; background: linear-gradient(to bottom, transparent, var(--navy)); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: clamp(60px,10vh,120px) var(--gutter);
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6.5vw, 88px); font-weight: 900;
  line-height: 1.02; letter-spacing: -0.025em; color: var(--white); margin-bottom: 28px;
}
.hero-title .gold-italic { font-style: italic; color: var(--gold); }
.hero-tagline { font-size: clamp(15px, 1.5vw, 18px); color: var(--text-light); line-height: 1.78; max-width: 480px; margin-bottom: 36px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.pill { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-border); padding: 6px 14px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-book-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-book-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse, rgba(200,162,74,0.11) 0%, transparent 65%); pointer-events: none;
}
.hero-book-img {
  max-width: 340px; width: 100%; height: auto; position: relative; z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.72)) drop-shadow(0 4px 16px rgba(200,162,74,0.18));
  animation: floatBook 7s ease-in-out infinite; transform: rotate(-2deg);
}
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,250,247,0.35); }
.scroll-mouse { width: 22px; height: 36px; border: 1px solid rgba(200,162,74,0.38); border-radius: 11px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 3px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrollDot 2s ease-in-out infinite; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-eyebrow, .hero-pills, .hero-actions { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-book-img { max-width: 240px; }
  .hero-book-wrap { order: -1; }
}

/* ── STAT STRIP ─────────────────────────────────────────────── */
.stat-strip {
  background: var(--navy-card);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  padding: 28px var(--gutter);
}
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: var(--container); margin: 0 auto; }
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px; text-align: center; border-right: 1px solid rgba(200,162,74,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,40px); font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-mid); }
@media (max-width: 600px) {
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(200,162,74,0.12); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(200,162,74,0.08); }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { max-width: var(--container); margin: 0 auto 64px; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.section-header-left { max-width: 520px; }
.section-header-desc { font-size: 15px; color: var(--text-light); max-width: 380px; line-height: 1.8; }

/* ── BOOKS / TRILOGY ────────────────────────────────────────── */
#books {
  padding: var(--section-pad) var(--gutter);
  background: var(--navy-mid); position: relative;
}
#books::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.books-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; max-width: var(--container); margin: 0 auto; }
.book-card {
  display: flex; flex-direction: column; gap: 24px;
  padding: 36px 32px 40px; background: rgba(17,31,48,0.55);
  border: 1px solid rgba(200,162,74,0.1); position: relative; overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.book-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.book-card:hover { border-color: rgba(200,162,74,0.28); background: rgba(17,31,48,0.88); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.4), 0 4px 16px rgba(200,162,74,0.1); }
.book-card:hover::before { transform: scaleX(1); }
.book-cover-wrap { display: flex; justify-content: center; position: relative; padding: 8px 0; }
.book-cover-glow { position: absolute; inset: -16px; background: radial-gradient(ellipse at 50% 80%, rgba(200,162,74,0.09) 0%, transparent 65%); pointer-events: none; }
.book-cover {
  width: 100%; max-width: 200px; height: 300px; object-fit: cover;
  display: block; position: relative; z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.6));
  transition: filter 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.book-card:hover .book-cover { filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7)) drop-shadow(0 4px 16px rgba(200,162,74,0.2)); transform: scale(1.04); }
.book-number { font-family: 'Playfair Display', serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.book-title { font-family: 'Playfair Display', serif; font-size: clamp(18px,2vw,24px); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--white); margin-top: 8px; }
.book-subtitle { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 6px; opacity: 0.8; }
.book-desc { font-size: 14px; line-height: 1.72; color: var(--text-light); margin-top: 8px; }
.book-actions { display: flex; gap: 12px; margin-top: auto; flex-wrap: wrap; }
@media (max-width: 900px) { .books-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }
@media (min-width: 560px) and (max-width: 900px) { .books-grid { grid-template-columns: repeat(2,1fr); max-width: 100%; } }

/* ── FEATURED BOOK ──────────────────────────────────────────── */
#featured {
  padding: var(--section-pad) var(--gutter);
  background: var(--navy); position: relative; overflow: hidden;
}
#featured::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,0.05) 0%, transparent 65%); pointer-events: none;
}
.featured-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; max-width: var(--container); margin: 0 auto; }
.featured-book-img {
  width: 100%; max-width: 380px; height: auto; display: block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.75)) drop-shadow(0 8px 24px rgba(200,162,74,0.2));
  transition: filter 0.5s, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.featured-book-img:hover { transform: scale(1.02) rotate(-1deg); filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8)) drop-shadow(0 12px 32px rgba(200,162,74,0.28)); }
blockquote.book-quote {
  font-family: 'Playfair Display', serif; font-size: clamp(17px,2vw,23px); font-style: italic;
  line-height: 1.65; color: var(--cream); padding: 24px 0 24px 28px; border-left: 3px solid var(--gold); margin: 32px 0;
}
.theme-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 36px; }
.theme-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-border); padding: 6px 14px; }
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .featured-book-img { max-width: 240px; margin: 0 auto; }
  blockquote.book-quote { text-align: left; }
  .theme-tags { justify-content: center; }
}

/* ── ABOUT SECTION (homepage) ───────────────────────────────── */
#about { background: var(--cream); padding: var(--section-pad) var(--gutter); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; max-width: var(--container); margin: 0 auto; }
.about-portrait { position: relative; }
.about-portrait-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: grayscale(10%); position: relative; z-index: 1; }
.about-portrait-frame { position: absolute; bottom: -18px; right: -18px; width: calc(100% - 20px); height: calc(100% - 20px); border: 2px solid var(--gold); z-index: 0; pointer-events: none; }
.about-badge { position: absolute; bottom: 20px; right: 20px; z-index: 2; background: var(--navy); padding: 18px 22px; }
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.about-badge .lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(200,162,74,0.7); display: block; margin-top: 4px; }
#about .label { color: #9B7520; }
.about-body { color: #2C3E50; font-size: 15.5px; line-height: 1.82; }
.cred-strip { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(10,22,40,0.12); }
.cred-item .cred-val { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); display: block; }
.cred-item .cred-lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: #9B7520; display: block; margin-top: 3px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ── SPEAKING SECTION ───────────────────────────────────────── */
#speaking { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); position: relative; }
#speaking::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.speaking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: var(--container); margin: 0 auto; }
.topic-list { list-style: none; }
.topic-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(200,162,74,0.1); }
.topic-item:first-child { padding-top: 0; }
.topic-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0; padding-top: 2px; }
.topic-text h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.topic-text p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.speaking-box { background: rgba(200,162,74,0.055); border: 1px solid var(--gold-border); padding: 44px 38px; position: sticky; top: 96px; }
.speaking-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.speaking-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-light); }
.speaking-checklist li::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }
@media (max-width: 900px) { .speaking-grid { grid-template-columns: 1fr; } .speaking-box { position: static; } }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials { background: var(--navy); padding: clamp(80px,12vh,140px) var(--gutter); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: var(--container); margin: 60px auto 0; }
.testimonial-card {
  background: var(--navy-card); border: 1px solid var(--gold-border); padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover { border-color: rgba(200,162,74,0.40); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); font-size: 14px; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; line-height: 1.72; color: var(--cream); margin-bottom: 22px; flex: 1; }
.testimonial-author { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.testimonial-role { font-size: 12px; color: var(--grey-mid); margin-top: 3px; }
@media (max-width: 559px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
@media (min-width: 560px) and (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); max-width: 100%; } }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
#newsletter {
  background: var(--navy-card);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  padding: clamp(64px,10vh,100px) var(--gutter);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-form { display: flex; margin-top: 32px; }
.newsletter-form input {
  flex: 1; background: rgba(250,250,247,0.05); border: 1px solid rgba(200,162,74,0.2);
  border-right: none; color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 15px; padding: 16px 20px; outline: none; transition: border-color 0.25s;
}
.newsletter-form input::placeholder { color: var(--grey-mid); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold); color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 26px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.25s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-form button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(200,162,74,0.2); border-bottom: none; }
}

/* ── CONTACT SECTION ────────────────────────────────────────── */
#contact { background: var(--navy); padding: var(--section-pad) var(--gutter); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: var(--container); margin: 0 auto; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea,
.dro-form input[type="text"], .dro-form input[type="email"],
.dro-form input[type="tel"], .dro-form textarea, .dro-form select {
  background: rgba(250,250,247,0.04); border: 1px solid rgba(200,162,74,0.15);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 15px 18px; outline: none; width: 100%;
  transition: border-color 0.25s, background 0.25s; resize: vertical;
  -webkit-appearance: none; appearance: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--grey-mid); }
.contact-form input:focus, .contact-form textarea:focus,
.dro-form input:focus, .dro-form textarea:focus, .dro-form select:focus {
  border-color: var(--gold); background: rgba(200,162,74,0.04);
}
.contact-form textarea, .dro-form textarea { min-height: 130px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info-item { padding: 28px 0; border-bottom: 1px solid rgba(200,162,74,0.1); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-info-value { font-size: 15px; color: var(--text-light); line-height: 1.65; }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer, .site-footer {
  background: var(--navy-mid); border-top: 1px solid var(--gold-border);
  padding: 56px var(--gutter) 36px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: var(--container); margin: 0 auto 48px; }
.footer-brand-desc { font-size: 14px; color: var(--text-light); line-height: 1.78; margin-top: 16px; max-width: 300px; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(250,250,247,0.5); text-decoration: none; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(200,162,74,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 13px; color: rgba(250,250,247,0.28); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,250,247,0.38); text-decoration: none; transition: color 0.25s; }
.footer-social a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } .footer-brand-desc { max-width: 100%; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(76px + clamp(60px, 8vh, 100px));
  padding-bottom: clamp(60px, 8vh, 100px);
  padding-left: var(--gutter); padding-right: var(--gutter);
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,162,74,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(20,50,90,0.4) 0%, transparent 50%),
    var(--navy);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--gold-border);
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; }
.page-hero__eyebrow { margin-bottom: 20px; }
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 72px); font-weight: 800;
  line-height: 1.07; letter-spacing: -0.025em; color: var(--white); margin-bottom: 24px;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__subtitle { font-size: clamp(15px, 1.5vw, 18px); color: var(--text-light); line-height: 1.78; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }
.page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy)); pointer-events: none;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-page-bio {
  background: var(--cream); padding: var(--section-pad) var(--gutter);
}
.about-page-bio .label { color: #9B7520; }
.about-page-bio-inner { max-width: 780px; margin: 0 auto; }
.about-page-bio-body { color: #2C3E50; font-size: 16px; line-height: 1.9; }
.about-page-bio-body p + p { margin-top: 1.4em; }
.about-page-bio-body h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin: 1.6em 0 0.6em; }

.about-timeline-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 48px; max-width: 700px; }
.timeline__item { display: flex; gap: 32px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(200,162,74,0.1); }
.timeline__item:last-child { border-bottom: none; }
.timeline__year { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0; min-width: 50px; padding-top: 2px; letter-spacing: 0.06em; }
.timeline__event { font-size: 15px; color: var(--text-light); line-height: 1.65; }

.about-cta-section {
  background: var(--navy-card);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  padding: clamp(60px, 8vh, 90px) var(--gutter); text-align: center;
}
.about-cta-inner { max-width: 600px; margin: 0 auto; }

/* ── TRILOGY PAGE ───────────────────────────────────────────── */
.trilogy-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); position: relative; }
.trilogy-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.trilogy-book-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start;
  max-width: var(--container); margin: 0 auto;
  padding: 64px 0; border-bottom: 1px solid rgba(200,162,74,0.1);
}
.trilogy-book-row:first-child { padding-top: 0; }
.trilogy-book-row:last-child { border-bottom: none; padding-bottom: 0; }
.trilogy-book-row.reverse { direction: rtl; }
.trilogy-book-row.reverse > * { direction: ltr; }
.trilogy-book-cover {
  width: 100%; height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.65)) drop-shadow(0 4px 16px rgba(200,162,74,0.15));
  transition: filter 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.trilogy-book-cover:hover { transform: scale(1.03) rotate(-1deg); }
.trilogy-book-content { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.trilogy-book-title {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--white);
}
.trilogy-book-subtitle { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }
.trilogy-book-desc { font-size: 15.5px; color: var(--text-light); line-height: 1.82; }
.trilogy-book-quote {
  font-family: 'Playfair Display', serif; font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic; line-height: 1.65; color: var(--cream);
  padding: 18px 0 18px 22px; border-left: 3px solid var(--gold); margin: 4px 0;
}
.trilogy-book-purchase { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; padding-top: 20px; border-top: 1px solid rgba(200,162,74,0.12); }
@media (max-width: 900px) {
  .trilogy-book-row { grid-template-columns: 1fr; gap: 36px; }
  .trilogy-book-row.reverse { direction: ltr; }
  .trilogy-book-cover { max-width: 220px; }
}

/* ── INDIVIDUAL BOOK LANDING ────────────────────────────────── */
.book-landing { background: var(--navy); }
.book-hero {
  padding-top: calc(76px + clamp(60px, 8vh, 100px));
  padding-bottom: clamp(80px, 12vh, 140px);
  padding-left: var(--gutter); padding-right: var(--gutter);
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(200,162,74,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 85%, rgba(20,50,90,0.45) 0%, transparent 50%),
    var(--navy);
  position: relative; overflow: hidden;
}
.book-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy)); pointer-events: none;
}
.book-hero__grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: center;
  max-width: var(--container); margin: 0 auto;
}
.book-hero__cover-wrap { position: relative; width: 320px; flex-shrink: 0; }
.book-hero__cover {
  width: 100%; height: auto;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.75)) drop-shadow(0 8px 24px rgba(200,162,74,0.22));
  animation: floatBook 8s ease-in-out infinite;
}
.book-hero__cover-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse, rgba(200,162,74,0.1) 0%, transparent 65%);
  pointer-events: none; z-index: -1;
}
.book-hero__content { display: flex; flex-direction: column; gap: 20px; }
.book-hero__title {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; color: var(--white);
}
.book-hero__title em { font-style: italic; color: var(--gold); }
.book-hero__subtitle { font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }
.book-hero__desc { font-size: clamp(15px, 1.4vw, 17px); color: var(--text-light); line-height: 1.82; max-width: 520px; }
.book-purchase-box { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.book-purchase-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.book-buy-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-amazon {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  border: 1px solid rgba(200,162,74,0.2); padding: 15px 24px;
  transition: border-color 0.25s, color 0.25s;
}
.btn-amazon:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) {
  .book-hero__grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .book-hero__cover-wrap { width: 220px; margin: 0 auto; }
  .book-hero__desc { margin: 0 auto; }
  .book-buy-row { justify-content: center; }
}

.book-details-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); position: relative; }
.book-details-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.book-details-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; max-width: var(--container); margin: 0 auto; align-items: start; }
.book-details-body { font-size: 15.5px; color: var(--text-light); line-height: 1.82; }
.book-details-body p + p { margin-top: 1.2em; }
.book-meta-box { background: rgba(200,162,74,0.04); border: 1px solid var(--gold-border); padding: 32px; }
.book-meta-box h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.book-meta-list { display: flex; flex-direction: column; gap: 14px; }
.book-meta-list li { display: flex; gap: 12px; font-size: 14px; color: var(--text-light); align-items: flex-start; }
.book-meta-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
@media (max-width: 900px) { .book-details-grid { grid-template-columns: 1fr; gap: 48px; } }

.book-reviews-section { background: var(--navy); padding: var(--section-pad) var(--gutter); }
.also-buy-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); border-top: 1px solid var(--gold-border); }
.also-buy-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; max-width: 900px; margin: 48px auto 0; }
@media (max-width: 600px) { .also-buy-grid { grid-template-columns: 1fr; } }

/* ── MEDIA & SPEAKING PAGE ──────────────────────────────────── */
.media-topics-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); position: relative; }
.media-topics-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.media-booking-section {
  background: var(--navy-card); border-top: 1px solid var(--gold-border);
  padding: var(--section-pad) var(--gutter);
}
.media-booking-inner { max-width: 780px; margin: 0 auto; }
.media-past-section { background: var(--navy-mid); padding: var(--section-pad) var(--gutter); }
.media-kit-box {
  background: rgba(200,162,74,0.055); border: 1px solid var(--gold-border);
  padding: 44px; text-align: center; max-width: 480px; margin: 48px auto 0;
}
.media-past-logos { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; margin-top: 48px; }
.media-past-logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: rgba(250,250,247,0.35); }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-cats-section { background: var(--navy-mid); border-bottom: 1px solid var(--gold-border); padding: clamp(48px, 6vh, 80px) var(--gutter); }
.contact-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 40px auto 0; }
.contact-cat-card { background: rgba(17,31,48,0.55); border: 1px solid rgba(200,162,74,0.1); padding: 28px 24px; transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.contact-cat-card:hover { border-color: rgba(200,162,74,0.28); transform: translateY(-4px); }
.contact-cat-card__label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.contact-cat-card__desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.contact-form-section { background: var(--navy); padding: var(--section-pad) var(--gutter); }
.contact-form-inner { max-width: var(--container); margin: 0 auto; }
@media (max-width: 900px) { .contact-cats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-cats-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE
   ══════════════════════════════════════════════════════════════ */
.woocommerce-notices-wrapper { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: rgba(200,162,74,0.08); border-left: 4px solid var(--gold);
  color: var(--white); padding: 16px 20px; margin: 16px 0; font-size: 14px;
}
.woocommerce-error { border-left-color: #e05c5c; background: rgba(224,92,92,0.08); }

.single_add_to_cart_button, button.single_add_to_cart_button {
  display: inline-flex !important; align-items: center !important; gap: 10px !important;
  font-family: 'DM Sans', sans-serif !important; font-size: 12px !important;
  font-weight: 600 !important; letter-spacing: 0.16em !important; text-transform: uppercase !important;
  cursor: pointer !important; border: none !important;
  padding: 16px 36px !important; background: var(--gold) !important;
  color: var(--navy) !important; border-radius: 0 !important;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, background 0.25s !important;
}
.single_add_to_cart_button:hover { background: var(--gold-light) !important; transform: translateY(-3px) !important; box-shadow: 0 12px 32px rgba(200,162,74,0.32) !important; }

.quantity input[type="number"] {
  background: rgba(250,250,247,0.05) !important; border: 1px solid rgba(200,162,74,0.2) !important;
  color: var(--white) !important; font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important; padding: 12px 16px !important;
  text-align: center !important; width: 64px !important; outline: none !important; border-radius: 0 !important;
  -moz-appearance: textfield !important; appearance: textfield !important;
}
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0; }

.woocommerce-cart-form, .woocommerce-checkout {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) var(--gutter); color: var(--white);
}
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; }
.woocommerce table.shop_table th {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding: 16px 0; border-bottom: 1px solid var(--gold-border);
}
.woocommerce table.shop_table td { padding: 20px 0; border-bottom: 1px solid rgba(200,162,74,0.08); color: var(--text-light); font-size: 15px; }
.woocommerce .cart_totals, .woocommerce-page .cart_totals {
  background: rgba(17,31,48,0.75); border: 1px solid rgba(200,162,74,0.1);
  padding: 32px; max-width: 400px; margin-left: auto;
}
.woocommerce .cart_totals h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.woocommerce #payment { background: rgba(17,31,48,0.5); border: 1px solid var(--gold-border); padding: 24px; }
.woocommerce #place_order { background: var(--gold) !important; color: var(--navy) !important; font-family: 'DM Sans', sans-serif !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.16em !important; text-transform: uppercase !important; padding: 16px 36px !important; border: none !important; cursor: pointer !important; width: 100% !important; border-radius: 0 !important; }
.woocommerce #place_order:hover { background: var(--gold-light) !important; }
.woocommerce form .form-row label { color: var(--grey-mid); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { background: rgba(250,250,247,0.04) !important; border: 1px solid rgba(200,162,74,0.15) !important; color: var(--white) !important; font-size: 15px !important; padding: 14px 16px !important; border-radius: 0 !important; outline: none !important; transition: border-color 0.25s !important; }
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold) !important; }

/* WPForms */
.wpforms-form .wpforms-field input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpforms-form .wpforms-field textarea,
.wpforms-form .wpforms-field select {
  background: rgba(250,250,247,0.04) !important; border: 1px solid rgba(200,162,74,0.15) !important;
  color: var(--white) !important; font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important; padding: 15px 18px !important;
  border-radius: 0 !important; outline: none !important; transition: border-color 0.25s !important;
}
.wpforms-form .wpforms-field input:focus, .wpforms-form .wpforms-field textarea:focus { border-color: var(--gold) !important; }
.wpforms-form .wpforms-field label { color: var(--grey-mid) !important; font-size: 12px !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; margin-bottom: 8px !important; }
.wpforms-submit-container { margin-top: 8px; }
.wpforms-submit {
  background: var(--gold) !important; color: var(--navy) !important;
  font-family: 'DM Sans', sans-serif !important; font-size: 12px !important;
  font-weight: 600 !important; letter-spacing: 0.16em !important; text-transform: uppercase !important;
  padding: 16px 36px !important; border: none !important; cursor: pointer !important; border-radius: 0 !important;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1) !important;
}
.wpforms-submit:hover { background: var(--gold-light) !important; transform: translateY(-2px) !important; }

/* CF7 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  background: rgba(250,250,247,0.04); border: 1px solid rgba(200,162,74,0.15);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 15px; padding: 15px 18px; width: 100%; outline: none; transition: border-color 0.25s;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--gold); }
.wpcf7-form input[type="submit"] {
  background: var(--gold); color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.wpcf7-form input[type="submit"]:hover { background: var(--gold-light); transform: translateY(-2px); }
.wpcf7-response-output { border: 1px solid var(--gold-border) !important; color: var(--text-light) !important; padding: 14px !important; margin-top: 16px !important; }

/* ── CONTACT CTA SECTION (flexible homepage section) ────────── */
.section-contact-cta {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(200,162,74,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE — SINGLE BOOK PRODUCT PAGE (refreshed)
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────── */
.wc-book-page .book-hero {
  background:
    radial-gradient(ellipse 70% 80% at 75% 25%, rgba(200,162,74,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(20,50,90,0.45) 0%, transparent 55%),
    var(--navy);
  padding: calc(76px + clamp(64px, 9vh, 110px)) var(--gutter) clamp(80px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}
.wc-book-page .book-hero__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.wc-book-page .book-hero__cover-wrap {
  position: relative;
  max-width: 360px;
}
.wc-book-page .book-hero__cover-shadow {
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,162,74,0.15) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.wc-book-page .book-hero__cover-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 12px 28px -8px rgba(200,162,74,0.18);
}
.wc-book-page .book-hero__content-col { display: flex; flex-direction: column; gap: 0; }
.wc-book-page .book-hero__content-col .label {
  color: var(--gold);
  margin-bottom: 14px !important;
}
.wc-book-page .book-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 12px;
}
.wc-book-page .book-hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-style: italic;
  color: var(--gold);
  margin: 0 0 24px;
}
.wc-book-page .book-hero__content-col::before { content: none; }
.wc-book-page .book-hero__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 24px;
}
.wc-book-page .book-hero__quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 0 0 24px;
  color: rgba(250,250,247,0.86);
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px,1.3vw,18px);
  font-style: italic;
  line-height: 1.75;
}
.wc-book-page .book-hero__excerpt {
  font-size: clamp(15px,1.3vw,16px);
  color: var(--text-light);
  line-height: 1.78;
  margin: 0 0 24px;
}
.wc-book-page .book-hero__price {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin: 8px 0 28px;
  letter-spacing: -0.01em;
}
.wc-book-page .book-hero__price .woocommerce-Price-amount { font-weight: inherit; }
.wc-book-page .book-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.wc-book-page .book-hero__actions form.cart {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
}

/* ── WC VARIABLE PRODUCT — Variations table + add-to-cart row ─ */
.wc-book-page form.variations_form {
  width: 100%;
  margin: 0 0 8px;
  display: block;
}
.wc-book-page form.variations_form table.variations {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
}
.wc-book-page form.variations_form table.variations tbody { display: block; }
.wc-book-page form.variations_form table.variations tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.wc-book-page form.variations_form table.variations tr:last-child { margin-bottom: 0; }
.wc-book-page form.variations_form table.variations th.label {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  width: auto;
}
.wc-book-page form.variations_form table.variations th.label label {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}
.wc-book-page form.variations_form table.variations td.value {
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
}
.wc-book-page form.variations_form table.variations td.value select {
  width: 100%;
  max-width: 320px;
  background: rgba(7, 17, 28, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 44px 14px 18px;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23C8A24A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  transition: border-color 0.25s, background-color 0.25s;
}
.wc-book-page form.variations_form table.variations td.value select:hover,
.wc-book-page form.variations_form table.variations td.value select:focus {
  border-color: var(--gold);
  background-color: rgba(7, 17, 28, 1);
}
.wc-book-page form.variations_form table.variations td.value select option {
  background: var(--navy);
  color: var(--white);
}
.wc-book-page form.variations_form .reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.wc-book-page form.variations_form .reset_variations:hover {
  color: var(--gold);
  border-color: var(--gold-border);
}
.wc-book-page form.variations_form .single_variation_wrap { margin-top: 4px; }
.wc-book-page form.variations_form .single_variation { margin-bottom: 16px; }
.wc-book-page form.variations_form .single_variation .woocommerce-variation-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin: 0;
}
.wc-book-page form.variations_form .single_variation .woocommerce-variation-description {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 12px 0 0;
}
.wc-book-page form.variations_form .single_variation .woocommerce-variation-availability {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.wc-book-page form.variations_form .variations_button {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Quantity selector — polished pill style */
.wc-book-page form.cart .quantity,
.wc-book-page form.variations_form .quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(7, 17, 28, 0.85);
  border: 1px solid var(--gold-border);
  padding: 0;
  height: 52px;
}
.wc-book-page form.cart .quantity .qty-btn,
.wc-book-page form.variations_form .quantity .qty-btn {
  width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.wc-book-page form.cart .quantity .qty-btn:hover,
.wc-book-page form.variations_form .quantity .qty-btn:hover {
  background: rgba(200, 162, 74, 0.15);
  color: var(--gold-light);
}
.wc-book-page form.cart .quantity input[type="number"],
.wc-book-page form.variations_form .quantity input[type="number"] {
  width: 56px !important;
  height: 100% !important;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid var(--gold-border) !important;
  border-right: 1px solid var(--gold-border) !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center !important;
  padding: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
}

/* Add to Cart button — match the theme's btn-primary */
.wc-book-page .single_add_to_cart_button,
.wc-book-page button.single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 52px !important;
  padding: 0 36px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s !important;
}
.wc-book-page .single_add_to_cart_button:hover,
.wc-book-page button.single_add_to_cart_button:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(200, 162, 74, 0.32) !important;
}
.wc-book-page .single_add_to_cart_button:active,
.wc-book-page button.single_add_to_cart_button:active {
  transform: translateY(0) !important;
}
.wc-book-page .single_add_to_cart_button.disabled,
.wc-book-page .single_add_to_cart_button[disabled] {
  background: rgba(200, 162, 74, 0.3) !important;
  color: rgba(7, 17, 28, 0.5) !important;
  cursor: not-allowed !important;
}

/* Stock + meta info under the variation */
.wc-book-page .stock { font-size: 13px; color: var(--text-light); margin-top: 8px; }
.wc-book-page .stock.in-stock { color: #7dba7d; }
.wc-book-page .stock.out-of-stock { color: #e08080; }

@media (max-width: 559px) {
  .wc-book-page form.variations_form table.variations td.value select { max-width: 100%; }
  .wc-book-page form.variations_form .variations_button { width: 100%; }
  .wc-book-page .single_add_to_cart_button { flex: 1; min-width: 0; }
}

/* ── ABOUT THE BOOK (dark) ──────────────────────────────────── */
.wc-book-page .book-about {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--gold-border);
}
.wc-book-page .book-about .section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-align: center;
}
.wc-book-page .book-about .container--narrow {
  max-width: 780px;
}
.wc-book-page .book-about .section-headline::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 40px;
}
.wc-book-page .book-about .prose {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.85;
}
.wc-book-page .book-about .prose p + p { margin-top: 1.4em; }
.wc-book-page .book-about .prose p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.6em;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  padding: 6px 14px 0 0;
  color: var(--gold);
}

/* ── KEY THEMES ────────────────────────────────────────────── */
.wc-book-page .book-themes {
  background: var(--navy-mid, #0d2240);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.wc-book-page .book-themes .section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-align: center;
}
.wc-book-page .book-themes .section-headline::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
}
.wc-book-page .book-themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.wc-book-page .book-theme-card {
  position: relative;
  padding: 30px 28px;
  background: rgba(17, 31, 48, 0.6);
  border: 1px solid var(--gold-border);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.wc-book-page .book-theme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.wc-book-page .book-theme-card:hover {
  border-color: rgba(200,162,74,0.45);
  transform: translateY(-4px);
}
.wc-book-page .book-theme-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.wc-book-page .book-theme-card__desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
}

/* ── TESTIMONIALS (per-book) ───────────────────────────────── */
.wc-book-page .book-testimonials {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.wc-book-page .book-testimonials .section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-align: center;
}
.wc-book-page .book-testimonials .section-headline::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
}
.wc-book-page .book-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 60px auto 0;
  max-width: var(--container);
}
.wc-book-page .testimonial-card {
  background: var(--navy-card, #111F30);
  border: 1px solid var(--gold-border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  margin: 0;
}
.wc-book-page .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
}
.wc-book-page .testimonial-card:hover {
  border-color: rgba(200,162,74,0.45);
  transform: translateY(-4px);
}
.wc-book-page .testimonial-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.74;
  color: var(--cream);
  flex-grow: 1;
  margin: 0 0 22px;
}
.wc-book-page .testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(200,162,74,0.14);
  padding-top: 18px;
  margin-top: auto;
}
.wc-book-page .testimonial-card__name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.wc-book-page .testimonial-card__role {
  font-size: 12.5px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ── MORE FROM THE TRILOGY (related, dark) ──────────────────── */
.wc-book-page .book-related {
  background: var(--navy-mid, #0d2240);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--gold-border);
}
.wc-book-page .book-related .section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}
.wc-book-page .book-related .section-header {
  text-align: center;
  margin-bottom: 56px !important;
}
.wc-book-page .book-related .section-headline::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
}
.wc-book-page .book-related .book-card {
  background: rgba(17, 31, 48, 0.6);
  border: 1px solid var(--gold-border);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.wc-book-page .book-related .book-card:hover {
  border-color: rgba(200,162,74,0.45);
  transform: translateY(-4px);
}
.wc-book-page .book-related .book-title    { color: var(--white); }
.wc-book-page .book-related .book-number   { color: var(--gold); }
.wc-book-page .book-related .book-subtitle { color: var(--text-light); }

@media (max-width: 900px) {
  .wc-book-page .book-hero__grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .wc-book-page .book-hero__cover-wrap { max-width: 280px; margin: 0 auto; }
  .wc-book-page .book-hero__divider { margin-left: auto; margin-right: auto; }
  .wc-book-page .book-hero__quote { text-align: left; }
  .wc-book-page .book-hero__actions { justify-content: center; }
  .wc-book-page .book-hero__actions form.cart { justify-content: center; }
  .wc-book-page .book-testimonials .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .wc-book-page .book-testimonials .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 559px) {
  .wc-book-page .book-about .prose p:first-child::first-letter { font-size: 3.4em; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--text-light); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.flex-gap { display: flex; gap: 16px; flex-wrap: wrap; }
.text-center { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — REDESIGNED HERO
   ══════════════════════════════════════════════════════════════ */
.about-page-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 75% 80% at 72% 28%, rgba(200,162,74,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 65% at 8% 90%,  rgba(20,50,90,0.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 94% 8%,  rgba(30,70,120,0.2) 0%, transparent 45%),
    var(--navy);
  padding: calc(76px + clamp(64px, 9vh, 110px)) var(--gutter) clamp(80px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}
.about-page-hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.about-page-hero__portrait-col { position: relative; }
.about-page-hero__portrait-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.about-page-hero__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(8%);
}
.about-page-hero__portrait-border {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1.5px solid var(--gold-border);
  z-index: 0;
  pointer-events: none;
}
.about-page-hero__portrait-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 60% 70%, rgba(200,162,74,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.about-page-hero__content { display: flex; flex-direction: column; }
.about-page-hero__eyebrow { margin-bottom: 18px; }
.about-page-hero__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
}
.about-page-hero__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}
.about-page-hero__tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  text-align: center;
}
.about-page-hero__cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 0;
}
.about-page-hero__cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-page-hero__cred-marker {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}
.about-page-hero__cred-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.about-page-hero__cred-text { display: flex; flex-direction: column; gap: 3px; }
.about-page-hero__cred-label { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.3; }
.about-page-hero__cred-sub { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }
.about-page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.about-page-hero__bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}
@media (max-width: 900px) {
  .about-page-hero {
    min-height: auto;
    padding-top: calc(76px + clamp(48px, 7vh, 80px));
  }
  .about-page-hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about-page-hero__portrait-col { max-width: 360px; margin: 0 auto; width: 100%; }
  .about-page-hero__portrait-border { display: none; }
  .about-page-hero__cred-item { text-align: left; }
  .about-page-hero__actions { justify-content: center; }
  .about-page-hero__divider { margin-left: auto; margin-right: auto; }
}

/* ── ABOUT PAGE BIO — header extensions ─────────────────── */
.about-page-bio__header { margin-bottom: 48px; }
.about-page-bio__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

/* ── ABOUT PAGE TRAINING SECTION ────────────────────────── */
.about-page-training {
  background: var(--navy-mid);
  padding: var(--section-pad) var(--gutter);
  position: relative;
}
.about-page-training::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.about-page-training::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.about-page-training__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-page-training__single { max-width: 780px; margin: 0 auto; }
.about-page-training__img-col { position: relative; }
.about-page-training__img { width: 100%; display: block; position: relative; z-index: 1; }
.about-page-training__img-border {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1.5px solid var(--gold-border);
  z-index: 0;
  pointer-events: none;
}
.about-page-training__text { display: flex; flex-direction: column; }
.about-page-training__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .about-page-training__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-page-training__img-border { display: none; }
  .about-page-training__img-col { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ── ABOUT PAGE TIMELINE — header ───────────────────────── */
.about-page-timeline__header { margin-bottom: 0; }
.about-page-timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

/* ── PAGE HERO — centered modifier ──────────────────────── */
.page-hero--centered { text-align: center; }
.page-hero--centered .page-hero__actions { justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   MEDIA & SPEAKING PAGE — additions
   ══════════════════════════════════════════════════════════════ */
.media-bio-section {
  background: var(--navy);
  padding: var(--section-pad) var(--gutter);
  border-bottom: 1px solid var(--gold-border);
}
.media-bio-inner { max-width: 780px; margin: 0 auto; }

.media-topics-header { margin-bottom: 48px; max-width: var(--container); margin-left: auto; margin-right: auto; }

.media-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.media-topic-card {
  background: rgba(17,31,48,0.55);
  border: 1px solid rgba(200,162,74,0.1);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.media-topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.media-topic-card:hover { border-color: rgba(200,162,74,0.28); transform: translateY(-4px); }
.media-topic-card:hover::before { transform: scaleX(1); }
.media-topic-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: rgba(200,162,74,0.18);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.media-topic-card__label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.media-topic-card__desc { font-size: 14px; color: var(--text-light); line-height: 1.72; }

.media-booking-header { margin-bottom: 0; }

.media-past-logo-item { display: flex; align-items: center; justify-content: center; }
.media-past-logo-img { max-height: 56px; width: auto; filter: grayscale(100%) opacity(0.55); transition: filter 0.3s; }
.media-past-logo-img:hover { filter: grayscale(0%) opacity(1); }

@media (max-width: 700px) { .media-topics-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — additions
   ══════════════════════════════════════════════════════════════ */
.contact-form-2col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-form-2col { grid-template-columns: 1fr; gap: 56px; } }

/* ══════════════════════════════════════════════════════════════
   AUDIOBOOK PRE-ORDER SECTION
   ══════════════════════════════════════════════════════════════ */
.audiobook-preorder-section {
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(200,162,74,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 60% at 10% 90%, rgba(20,50,90,0.5) 0%, transparent 55%),
    var(--navy);
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.audiobook-preorder-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Cover column */
.audiobook-cover-col { position: relative; }
.audiobook-cover-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.audiobook-cover-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,0.6),
    0 8px 24px -8px rgba(200,162,74,0.18);
}
.audiobook-cover-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,162,74,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.audiobook-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(7,17,28,0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.audiobook-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.audiobook-meta-item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.audiobook-meta-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.audiobook-meta-value { font-size: 14px; color: var(--cream); }

/* Content column */
.audiobook-content-col { display: flex; flex-direction: column; }
.audiobook-eyebrow { margin-bottom: 18px; color: var(--gold); }
.audiobook-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 14px;
}
.audiobook-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}
.audiobook-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}
.audiobook-desc {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-light);
  margin: 0 0 32px;
  max-width: 560px;
}
.audiobook-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .audiobook-preorder-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .audiobook-desc { margin-left: auto; margin-right: auto; }
  .audiobook-divider { margin-left: auto; margin-right: auto; }
  .audiobook-actions { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   AUDIOBOOK PRE-ORDER — POPUP MODAL
   ══════════════════════════════════════════════════════════════ */
.audiobook-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 17, 28, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: dro-popup-fade 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.audiobook-popup-overlay[hidden] { display: none; }
@keyframes dro-popup-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.audiobook-popup-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #0d1c2e;
  border: 1px solid var(--gold-border);
  padding: 48px 44px 40px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(200, 162, 74, 0.08);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: dro-popup-rise 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes dro-popup-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.audiobook-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.audiobook-popup-close:hover,
.audiobook-popup-close:focus-visible {
  color: var(--gold);
  border-color: var(--gold-border);
  outline: none;
}
.audiobook-popup-close:active { transform: scale(0.94); }
.audiobook-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 12px;
}
.audiobook-popup-body {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-light);
  margin: 0 0 28px;
}
.audiobook-popup-form-wrap { margin-top: 4px; }
.audiobook-lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.audiobook-form-field { display: flex; flex-direction: column; gap: 7px; }
.audiobook-form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.audiobook-form-field input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 17, 28, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background-color 0.2s;
}
.audiobook-form-field input::placeholder { color: rgba(250, 250, 247, 0.35); }
.audiobook-form-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7, 17, 28, 0.85);
}
.audiobook-form-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 80, 0.55);
}
.btn--full { width: 100%; justify-content: center; }
.audiobook-form-privacy {
  font-size: 12px;
  color: var(--grey-mid);
  text-align: center;
  margin: 6px 0 0;
  line-height: 1.6;
}

@media (max-width: 559px) {
  .audiobook-popup-box { padding: 40px 24px 32px; }
  .audiobook-popup-close { top: 8px; right: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   EMBEDDED FORMS (CF7 / WPForms / Fluent) inside popups
   ══════════════════════════════════════════════════════════════ */
.dro-form .wpcf7-form,
.dro-form form { display: flex; flex-direction: column; gap: 16px; }
.dro-form p { margin: 0; }
.dro-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.dro-form input[type="text"],
.dro-form input[type="email"],
.dro-form input[type="tel"],
.dro-form input[type="url"],
.dro-form input[type="number"],
.dro-form textarea,
.dro-form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 17, 28, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background-color 0.2s;
}
.dro-form input::placeholder,
.dro-form textarea::placeholder { color: rgba(250, 250, 247, 0.35); }
.dro-form input:focus,
.dro-form textarea:focus,
.dro-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7, 17, 28, 0.85);
}
.dro-form .wpcf7-submit,
.dro-form button[type="submit"],
.dro-form input[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  margin-top: 8px;
}
.dro-form .wpcf7-submit:hover,
.dro-form button[type="submit"]:hover,
.dro-form input[type="submit"]:hover { background: #d4b15c; }
.dro-form .wpcf7-submit:active,
.dro-form button[type="submit"]:active,
.dro-form input[type="submit"]:active { transform: scale(0.98); }

/* CF7 messages */
.dro-form .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 12px 16px !important;
  border: 1px solid var(--gold-border) !important;
  font-size: 13px;
  color: var(--cream);
  background: rgba(7, 17, 28, 0.6);
}
.dro-form .wpcf7-not-valid-tip {
  color: #e88c8c;
  font-size: 12px;
  margin-top: 4px;
}
.dro-form .wpcf7-spinner { display: none; }

/* ── WPForms-specific overrides ──────────────────────────── */
.dro-form .wpforms-container,
.dro-form .wpforms-form { background: transparent !important; }
.dro-form .wpforms-field { padding: 0 !important; margin: 0 0 16px !important; }
.dro-form .wpforms-field-label {
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin-bottom: 7px !important;
}
.dro-form .wpforms-field-sublabel,
.dro-form .wpforms-field-description {
  color: var(--grey-mid) !important;
  font-size: 12px !important;
}
.dro-form .wpforms-required-label { color: var(--gold) !important; }
.dro-form .wpforms-submit {
  width: 100% !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
}
.dro-form .wpforms-submit:hover { background: #d4b15c !important; }
.dro-form .wpforms-confirmation-container {
  background: rgba(7,17,28,0.6) !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--cream) !important;
  padding: 20px !important;
}