/* ================================================================
   BUKKYOFFICIAL.COM — Global Custom CSS
   Translates the HTML template (docs/home.html) to WordPress/Elementor
   Author: Fattain Naime
   ================================================================ */

/* ──────────────────────────────────────────────
   1. SELF-HOSTED FONTS (@font-face)
   ────────────────────────────────────────────── */

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-v40-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/open-sans-v44-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/open-sans-v44-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/open-sans-v44-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/open-sans-v44-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/open-sans-v44-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alex Brush';
    src: url('../fonts/alex-brush/alex-brush-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ──────────────────────────────────────────────
   2. CSS CUSTOM PROPERTIES (Design Tokens)
   ────────────────────────────────────────────── */

:root {
    --bo-primary: #6B1D2A;
    --bo-primary-dark: #4A1019;
    --bo-gold: #C5A55A;
    --bo-gold-light: #E5D59A;
    --bo-text: #1A1A1A;
    --bo-text-muted: #555555;
    --bo-bg: #FAFAFA;
    --bo-bg-white: #FFFFFF;
    --bo-bg-light: #FAFAFA;
    --bo-dark: #111111;
    --bo-font-serif: 'Playfair Display', serif;
    --bo-font-sans: 'Open Sans', sans-serif;
    --bo-font-signature: 'Alex Brush', cursive;
    --bo-container: 90rem;
    /* 1440px */
    --bo-px: 1.5rem;
    /* px-6 */
    --bo-px-md: 3rem;
    /* md:px-12 */
    --bo-section-py: 8rem;
    /* py-32 */

    /* Book cover color palette (6 colors for cycling) */
    --bo-cover-1: #2a3b45;
    /* deep teal */
    --bo-cover-2: #4A1019;
    /* dark burgundy */
    --bo-cover-3: #1e3a29;
    /* forest green */
    --bo-cover-4: #2d1b4e;
    /* deep purple */
    --bo-cover-5: #1f2937;
    /* charcoal blue */
    --bo-cover-6: #3b1f0b;
    /* dark espresso */
}

/* ──────────────────────────────────────────────
   3. GLOBAL RESETS & BASE
   ────────────────────────────────────────────── */

::selection {
    background-color: var(--bo-gold);
    color: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--bo-font-sans);
    background-color: var(--bo-bg);
    color: var(--bo-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

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

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

/* ──────────────────────────────────────────────
   4. ELEMENTOR OVERRIDES
   Reset Elementor's default gaps/margins so
   our sections control their own spacing.
   ────────────────────────────────────────────── */

.elementor .e-con {
    --gap: 0px;
    --row-gap: 0px;
    --column-gap: 0px;
    --widgets-spacing: 0px;
}

.elementor-widget-html {
    width: 100%;
}

.elementor-widget-html>.elementor-widget-container {
    width: 100%;
}

.elementor .elementor-element.elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

.elementor .e-con-full>.elementor-widget {
    width: 100%;
    max-width: 100%;
}

/* ──────────────────────────────────────────────
   5. SHARED UTILITIES
   ────────────────────────────────────────────── */

.bo-section-container {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding-left: var(--bo-px);
    padding-right: var(--bo-px);
}

@media (min-width: 768px) {
    .bo-section-container {
        padding-left: var(--bo-px-md);
        padding-right: var(--bo-px-md);
    }
}

/* Eyebrow label — Template: text-xs font-semibold tracking-[0.2em] uppercase */
.bo-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bo-primary);
    margin-bottom: 1rem;
}

.bo-eyebrow--gold {
    color: var(--bo-gold);
}

/* Buttons */
.bo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bo-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
    border: none;
    cursor: pointer;
}

.bo-btn-primary:hover {
    background: var(--bo-primary-dark);
    color: #fff;
}

.bo-btn-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bo-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--bo-gold);
    color: var(--bo-gold);
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.bo-btn-outline-gold:hover {
    background: var(--bo-gold);
    color: var(--bo-dark);
}

.bo-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.bo-btn-outline-white:hover {
    background: #fff;
    color: var(--bo-primary-dark);
}

.bo-btn-dark {
    display: inline-block;
    background: var(--bo-text);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}

.bo-btn-dark:hover {
    background: var(--bo-primary);
    color: #fff;
}

.bo-btn-outline-dark {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--bo-text);
    color: var(--bo-text);
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bo-btn-outline-dark:hover {
    background: var(--bo-text);
    color: #fff;
}

.bo-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bo-gold);
    color: var(--bo-dark);
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}

.bo-btn-gold:hover {
    background: var(--bo-gold-light);
}

/* Underline button — Template: text-xs font-bold tracking-[0.2em] uppercase border-b */
.bo-btn-underline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bo-text);
    border-bottom: 1px solid var(--bo-text);
    padding-bottom: 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.bo-btn-underline:hover {
    color: var(--bo-primary);
    border-bottom-color: var(--bo-primary);
}

.bo-btn-underline svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bo-btn-underline:hover svg {
    transform: translateX(4px);
}

/* Badges */
.bo-badge-category {
    display: inline-block;
    border: 1px solid rgba(197, 165, 90, 0.5);
    color: var(--bo-gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(197, 165, 90, 0.05);
}

.bo-badge-new {
    display: inline-block;
    margin-left: 0.5rem;
    color: #15803d;
    background: #f0fdf4;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* ──────────────────────────────────────────────
   6. NAVBAR
   Template: fixed w-full z-60 transition-all py-6
   ────────────────────────────────────────────── */

.bo-navbar {
    position: fixed;
    width: 100%;
    z-index: 60;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
    background: transparent;
    padding: 1.5rem 0;
}

.bo-navbar.bo-scrolled {
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom-color: #e5e7eb;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bo-nav-container {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-nav-container {
        padding: 0 var(--bo-px-md);
    }
}

/* Logo */
.bo-logo {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 60;
}

.bo-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: color 0.5s ease;
    color: #fff;
    font-family: var(--bo-font-serif);
}

@media (min-width: 768px) {
    .bo-logo-title {
        font-size: 1.875rem;
    }
}

.bo-navbar.bo-scrolled .bo-logo-title {
    color: var(--bo-text);
}

.bo-logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: color 0.5s ease;
    color: var(--bo-gold);
}

.bo-navbar.bo-scrolled .bo-logo-subtitle {
    color: var(--bo-primary);
}

/* Desktop Nav Links */
.bo-nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .bo-nav-links {
        display: flex;
    }
}

.bo-nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    color: #d1d5db;
}

.bo-nav-link:hover {
    color: var(--bo-gold);
}

.bo-navbar.bo-scrolled .bo-nav-link {
    color: var(--bo-text-muted);
}

.bo-navbar.bo-scrolled .bo-nav-link:hover {
    color: var(--bo-gold);
}

.bo-nav-contact-btn {
    padding: 0.75rem 2rem;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.bo-nav-contact-btn:hover {
    background: #fff;
    color: var(--bo-text);
}

.bo-navbar.bo-scrolled .bo-nav-contact-btn {
    border-color: var(--bo-primary);
    color: var(--bo-primary);
}

.bo-navbar.bo-scrolled .bo-nav-contact-btn:hover {
    background: var(--bo-primary);
    color: #fff;
}

/* Mobile Menu Button */
.bo-mobile-btn {
    display: block;
    padding: 0.5rem;
    position: relative;
    z-index: 60;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: color 0.5s ease;
}

.bo-navbar.bo-scrolled .bo-mobile-btn {
    color: var(--bo-text);
}

@media (min-width: 1024px) {
    .bo-mobile-btn {
        display: none;
    }
}

.bo-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.bo-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.bo-mobile-btn[aria-expanded="true"] .bo-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bo-mobile-btn[aria-expanded="true"] .bo-hamburger span:nth-child(2) {
    opacity: 0;
}

.bo-mobile-btn[aria-expanded="true"] .bo-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.bo-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(17, 17, 17, 0.98);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

@media (min-width: 1024px) {
    .bo-mobile-overlay {
        display: none;
    }
}

.bo-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bo-mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 1.5rem;
}

.bo-mobile-item {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    font-family: var(--bo-font-serif);
    transition: all 0.5s ease;
    transform: translateY(2rem);
    opacity: 0;
}

.bo-mobile-overlay.is-open .bo-mobile-item {
    transform: translateY(0);
    opacity: 1;
}

.bo-mobile-item:hover {
    color: var(--bo-gold);
}

.bo-mobile-contact-btn {
    margin-top: 2.5rem;
    padding: 1rem 3rem;
    border: 1px solid var(--bo-gold);
    color: var(--bo-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.5s ease;
    transform: translateY(2rem);
    opacity: 0;
}

.bo-mobile-overlay.is-open .bo-mobile-contact-btn {
    transform: translateY(0);
    opacity: 1;
}

.bo-mobile-contact-btn:hover {
    background: var(--bo-gold);
    color: var(--bo-dark);
}

/* ──────────────────────────────────────────────
   7. HERO SECTION
   Template: min-h-screen flex items-center justify-center pt-20 overflow-hidden
   ────────────────────────────────────────────── */

.bo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.bo-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bo-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: heroPulse 20s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Fallback if image doesn't load */
.bo-hero__bg {
    background: var(--bo-dark);
}

/* Gradient overlay — from-[#111111]/90 via-[#4A1019]/80 to-[#111111]/95 */
.bo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(17, 17, 17, 0.9),
            rgba(74, 16, 25, 0.8),
            rgba(17, 17, 17, 0.95));
    z-index: 1;
}

.bo-hero__content {
    position: relative;
    z-index: 10;
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .bo-hero__content {
        padding: 0 var(--bo-px-md);
    }
}

/* Eyebrow with gold lines */
.bo-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bo-hero__eyebrow::before,
.bo-hero__eyebrow::after {
    content: '';
    width: 3rem;
    height: 1px;
    background: var(--bo-gold);
}

.bo-hero__eyebrow span {
    color: var(--bo-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* H1 — text-5xl md:text-7xl lg:text-8xl */
.bo-hero-h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--bo-font-serif);
}

@media (min-width: 768px) {
    .bo-hero-h1 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .bo-hero-h1 {
        font-size: 6rem;
    }
}

.bo-hero__gradient-text {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(to right, var(--bo-gold), var(--bo-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle — text-lg md:text-xl text-gray-300 max-w-3xl font-light */
.bo-hero__subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 48rem;
    line-height: 1.625;
    font-weight: 300;
}

@media (min-width: 768px) {
    .bo-hero__subtitle {
        font-size: 1.25rem;
    }
}

/* CTAs — flex gap-6 */
.bo-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bo-hero__ctas {
        flex-direction: row;
    }
}

/* Scroll Indicator */
.bo-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    z-index: 10;
}

.bo-scroll-indicator span {
    color: var(--bo-gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.bo-scroll-indicator__line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--bo-gold), transparent);
}

/* ──────────────────────────────────────────────
   8. TRUST BANNER
   ────────────────────────────────────────────── */

.bo-trust-banner {
    background: var(--bo-text);
    padding: 1.5rem 0;
}

.bo-trust-banner__inner {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bo-trust-banner__inner {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        padding: 0 var(--bo-px-md);
    }
}

.bo-trust-banner__label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.bo-trust-banner__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.bo-trust-logo {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   9. ABOUT / AUTHOR INTRODUCTION
   Template: py-32 bg-white
   Grid: grid-cols-12 gap-16 items-center
   Left: col-span-5 | Right: col-span-7
   ────────────────────────────────────────────── */

.bo-about {
    padding: var(--bo-section-py) 0;
    background: #fff;
    position: relative;
}

.bo-about__container {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-about__container {
        padding: 0 var(--bo-px-md);
    }
}

@media (min-width: 1024px) {
    .bo-about__container {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

/* Left: Image composition */
.bo-about__image-wrap {
    position: relative;
}

/* Gold border offset — Template: absolute -inset-4 border border-[#C5A55A]/30 translate-x-4 translate-y-4 */
.bo-about__image-wrap::before {
    content: '';
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(197, 165, 90, 0.3);
    transform: translate(1rem, 1rem);
    pointer-events: none;
}

.bo-about__image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 1s ease;
}

.bo-about__image:hover {
    filter: grayscale(0%);
}

/* Stat card — Template: absolute -bottom-10 -right-10 bg-[#6B1D2A] p-8 w-64 */
.bo-about__stat-card {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    background: var(--bo-primary);
    padding: 2rem;
    color: #fff;
    z-index: 20;
    width: 16rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
}

@media (min-width: 768px) {
    .bo-about__stat-card {
        display: block;
    }
}

.bo-about__stat-card span:first-child {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    margin-bottom: 0.5rem;
}

.bo-about__stat-card span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bo-gold);
}

/* Right: Typography — col-span-7 lg:pl-16 */
.bo-about__text {
    padding: 0;
}

@media (min-width: 1024px) {
    .bo-about__text {
        padding-left: 4rem;
    }
}

.bo-about__text .bo-eyebrow {
    margin-bottom: 1.5rem;
}

/* h2 — Template: text-5xl md:text-6xl font-bold leading-[1.1] font-serif */
.bo-about__text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bo-text);
    margin: 0 0 2.5rem;
    line-height: 1.1;
    font-family: var(--bo-font-serif);
}

@media (min-width: 768px) {
    .bo-about__text h2 {
        font-size: 3.75rem;
    }
}

/* Divider — w-12 h-[2px] bg-gold mb-10 */
.bo-about__divider {
    width: 3rem;
    height: 2px;
    background: var(--bo-gold);
    margin-bottom: 2.5rem;
}

/* Lead paragraph — text-xl text-[#555] font-light leading-relaxed */
.bo-about__lead {
    font-size: 1.25rem;
    color: var(--bo-text-muted);
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.bo-about__text p {
    color: var(--bo-text-muted);
    line-height: 1.625;
    margin-bottom: 2.5rem;
}

/* Signature — text-[2.5rem] font-signature */
.bo-about__signature {
    display: block;
    font-size: 2.5rem;
    font-family: var(--bo-font-signature);
    font-weight: 400;
    color: var(--bo-text);
    margin-bottom: 3rem;
}

/* ──────────────────────────────────────────────
   10. BOOK SERIES SPLIT
   Template: py-0 flex md:flex-row min-h-[60vh]
   Panel 1: bg-[#4A1019] p-16 md:p-24
   Panel 2: bg-[#1A1A1A] p-16 md:p-24
   ────────────────────────────────────────────── */

.bo-series-split {
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}

@media (min-width: 768px) {
    .bo-series-split {
        flex-direction: row;
    }
}

.bo-series-panel {
    width: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

@media (min-width: 768px) {
    .bo-series-panel {
        width: 50%;
        padding: 6rem;
    }
}

.bo-series-panel--one {
    background: var(--bo-primary-dark);
}

.bo-series-panel--two {
    background: var(--bo-text);
}

/* Texture overlay */
.bo-series-panel__texture {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('../images/stardust.png');
}

.bo-series-panel__content {
    position: relative;
    z-index: 10;
    max-width: 32rem;
}

.bo-series-panel--one .bo-series-panel__content {
    margin-left: auto;
}

.bo-series-panel--two .bo-series-panel__content {
    margin-right: auto;
}

.bo-series-panel__icon {
    color: var(--bo-gold);
    opacity: 0.5;
    margin-bottom: 2rem;
}

.bo-series-panel__eyebrow {
    display: block;
    color: var(--bo-gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bo-series-panel__content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    font-family: var(--bo-font-serif);
}

@media (min-width: 768px) {
    .bo-series-panel__content h3 {
        font-size: 3rem;
    }
}

.bo-series-panel__content p {
    color: #d1d5db;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.625;
}

.bo-series-panel--two .bo-series-panel__content p {
    color: #9ca3af;
}

/* ──────────────────────────────────────────────
   11. FEATURED BOOKS GRID
   Template: py-32 bg-[#FAFAFA]
   Grid: grid-cols-4 gap-x-8 gap-y-16
   ────────────────────────────────────────────── */

.bo-books {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

/* Header — flex justify-between items-end */
.bo-books__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bo-books__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.bo-books__header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0;
}

.bo-books__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Grid */
.bo-books__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 2rem;
}

@media (min-width: 640px) {
    .bo-books__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

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

.bo-books__view-all {
    margin-top: 5rem;
    text-align: center;
}

/* Book Card */
.bo-book-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

/* Cover — aspect-[2/3] shadow-xl hover:shadow-2xl hover:-translate-y-3 border-l-4 border-white/20 */
.bo-book-card__cover {
    aspect-ratio: 2 / 3;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    background-color: #2a3b45;
    background-size: cover;
    background-position: center;
}

.bo-book-card:hover .bo-book-card__cover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.75rem);
}

.bo-book-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.4), transparent);
}

.bo-book-card__cover h3,
.bo-book-card__cover-title {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
    font-family: var(--bo-font-serif);
    margin: 0;
}

/* Badge — absolute top-4 right-4 bg-gold */
.bo-book-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bo-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    z-index: 10;
}

/* Meta */
.bo-book-card__meta {
    text-align: center;
}

.bo-book-card__series {
    display: block;
    font-size: 0.65rem;
    color: var(--bo-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bo-book-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bo-text);
    margin: 0 0 0.5rem;
    font-family: var(--bo-font-serif);
}

.bo-book-card__price {
    color: var(--bo-gold);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--bo-font-serif);
}

.bo-book-card__price-from {
    font-size: 0.7rem;
    font-weight: 400;
    font-family: var(--bo-font-sans);
    color: var(--bo-text-muted);
    margin-right: 0.25rem;
}

.bo-archive-series--dark .bo-book-card__price-from {
    color: #9ca3af;
}

/* Book cover color palette classes */
.bo-book-card__cover--palette-0 {
    background-color: var(--bo-cover-1);
}

.bo-book-card__cover--palette-1 {
    background-color: var(--bo-cover-2);
}

.bo-book-card__cover--palette-2 {
    background-color: var(--bo-cover-3);
}

.bo-book-card__cover--palette-3 {
    background-color: var(--bo-cover-4);
}

.bo-book-card__cover--palette-4 {
    background-color: var(--bo-cover-5);
}

.bo-book-card__cover--palette-5 {
    background-color: var(--bo-cover-6);
}

/* When a real cover image is set via background-image */
.bo-book-card__cover--has-image h3,
.bo-book-card__cover--has-image .bo-book-card__cover-title {
    opacity: 0;
}

.bo-book-card__cover--has-image {
    padding: 0;
}

/* ──────────────────────────────────────────────
   11b. BOOKS PAGE — HERO STATS
   ────────────────────────────────────────────── */

.bo-page-hero--books-showcase {
    min-height: 60vh;
}

.bo-books-hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bo-books-hero__stat {
    text-align: center;
}

.bo-books-hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: var(--bo-gold);
}

.bo-books-hero__stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.bo-books-hero__stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(197, 165, 90, 0.3);
}

@media (max-width: 639px) {
    .bo-books-hero__stat-divider {
        display: none;
    }

    .bo-books-hero__stats {
        gap: 1.5rem;
    }
}

/* ──────────────────────────────────────────────
   11c. BOOKS PAGE — FEATURED SPOTLIGHT
   ────────────────────────────────────────────── */

.bo-book-spotlight {
    padding: var(--bo-section-py) 0;
    background: #fff;
}

.bo-book-spotlight__header {
    text-align: center;
    margin-bottom: 4rem;
}

.bo-book-spotlight__header .bo-about__divider {
    margin-left: auto;
    margin-right: auto;
}

.bo-book-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-book-spotlight__grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

.bo-book-spotlight__cover {
    aspect-ratio: 2 / 3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 360px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

.bo-book-spotlight__cover h3 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.75rem;
    position: relative;
    z-index: 10;
    font-family: var(--bo-font-serif);
    margin: 0;
}

.bo-book-spotlight__cover--has-image h3,
.bo-book-spotlight__cover--has-image .bo-book-card__cover-title {
    opacity: 0;
}

.bo-book-spotlight__cover--has-image {
    padding: 0;
}

.bo-book-spotlight__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.bo-book-spotlight__overview {
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.0625rem;
}

.bo-book-spotlight__pricing {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bo-book-spotlight__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bo-primary);
    font-family: var(--bo-font-serif);
}

.bo-book-spotlight__price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--bo-text-muted);
    font-family: var(--bo-font-sans);
}

.bo-book-spotlight__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   11d. BOOKS PAGE — ENHANCED SERIES HEADERS
   ────────────────────────────────────────────── */

.bo-archive-series__header {
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.bo-archive-series__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background: var(--bo-gold);
}

.bo-archive-series__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1rem;
}

@media (min-width: 768px) {
    .bo-archive-series__header h2 {
        font-size: 3rem;
    }
}

.bo-archive-series--dark .bo-archive-series__header h2 {
    color: #fff;
}

.bo-archive-series--light .bo-archive-series__header h2 {
    color: var(--bo-text);
}

.bo-archive-series__header p {
    max-width: 600px;
    margin: 0;
    line-height: 1.625;
    font-weight: 300;
}

.bo-archive-series--dark .bo-archive-series__header p {
    color: #9ca3af;
}

.bo-archive-series--light .bo-archive-series__header p {
    color: var(--bo-text-muted);
}

.bo-archive-series__count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bo-gold);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.bo-archive-series__count::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--bo-gold);
    opacity: 0.5;
}

/* ──────────────────────────────────────────────
   11e. BOOKS PAGE — SPLIT CTA
   ────────────────────────────────────────────── */

.bo-books-cta {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .bo-books-cta {
        flex-direction: row;
    }
}

.bo-books-cta__panel {
    width: 100%;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .bo-books-cta__panel {
        width: 50%;
        padding: 6rem 4rem;
    }
}

.bo-books-cta__panel--dark {
    background: var(--bo-dark);
    color: #fff;
}

.bo-books-cta__panel--primary {
    background: var(--bo-primary-dark);
    color: #fff;
}

.bo-books-cta__panel-content {
    max-width: 28rem;
    position: relative;
    z-index: 10;
}

.bo-books-cta__heading {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1.5rem;
    color: #fff;
}

.bo-books-cta__text {
    color: #d1d5db;
    line-height: 1.625;
    font-weight: 300;
    margin-bottom: 2rem;
}

.bo-books-cta__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bo-books-cta__signature {
    display: block;
    margin-top: 2rem;
    font-family: var(--bo-font-signature);
    font-size: 2rem;
    color: var(--bo-gold);
}

/* ──────────────────────────────────────────────
   12. WHAT I DO PREVIEW
   Template: py-32 bg-[#FAFAFA]
   Grid: grid-cols-3 gap-8
   ────────────────────────────────────────────── */

.bo-wid-preview {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

/* Header — flex justify-between items-end */
.bo-wid-preview__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .bo-wid-preview__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.bo-wid-preview__header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 0;
}

@media (min-width: 768px) {
    .bo-wid-preview__header h2 {
        font-size: 3rem;
    }
}

.bo-wid-preview__intro {
    color: var(--bo-text-muted);
    margin-top: 1rem;
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.625;
}

/* Cards Grid */
.bo-wid-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bo-wid-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* What I Do Card — Template: bg-white border border-gray-100 hover:shadow-xl */
.bo-wid-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.bo-wid-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.bo-wid-card a {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.bo-wid-card__date {
    display: block;
    font-size: 0.65rem;
    color: var(--bo-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bo-wid-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bo-text);
    margin: 0 0 1rem;
    font-family: var(--bo-font-serif);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.bo-wid-card:hover h3 {
    color: var(--bo-primary);
}

.bo-wid-card p {
    color: var(--bo-text-muted);
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0 0 1.5rem;
}

.bo-wid-card .bo-btn-underline {
    font-size: 0.75rem;
}

.bo-wid-card:hover .bo-btn-underline {
    color: var(--bo-primary);
    border-bottom-color: var(--bo-primary);
}

/* ──────────────────────────────────────────────
   13. PUBLIC SERVICE OPPORTUNITIES
   Template: py-32 bg-white border-t border-gray-100
   ────────────────────────────────────────────── */

.bo-opportunities {
    padding: var(--bo-section-py) 0;
    background: #fff;
    position: relative;
}

/* Subtle top transition — thin gold accent line for visual continuity */
.bo-opportunities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--bo-gold);
}

/* Header — flex justify-between items-end mb-16 border-b pb-8 */
.bo-opportunities__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .bo-opportunities__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.bo-opportunities__header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0;
}

@media (min-width: 768px) {
    .bo-opportunities__header h2 {
        font-size: 3rem;
    }
}

/* Table */
.bo-opportunities__table {
    width: 100%;
}

/* Table header row */
.bo-opp-header {
    display: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bo-text-muted);
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .bo-opp-header {
        display: grid;
        grid-template-columns: 4fr 3fr 3fr 2fr;
        gap: 1rem;
    }
}

.bo-opp-header div:last-child {
    text-align: right;
}

/* Opportunity row */
.bo-opp-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
    margin: 0 -1rem;
}

.bo-opp-row:hover {
    background: var(--bo-bg);
}

@media (min-width: 768px) {
    .bo-opp-row {
        grid-template-columns: 4fr 3fr 3fr 2fr;
        align-items: center;
        gap: 1rem;
    }
}

.bo-opp-row__role h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 0.25rem;
    transition: color 0.3s ease;
}

.bo-opp-row:hover .bo-opp-row__role h3 {
    color: var(--bo-primary);
}

.bo-opp-row__role p {
    font-size: 0.875rem;
    color: var(--bo-text-muted);
    margin: 0;
}

.bo-opp-row__location {
    font-size: 0.875rem;
    color: var(--bo-text-muted);
}

.bo-opp-row__closing {
    display: block;
    color: var(--bo-primary);
    margin-top: 0.25rem;
}

.bo-opp-row__action {
    text-align: left;
}

@media (min-width: 768px) {
    .bo-opp-row__action {
        text-align: right;
    }
}

/* ──────────────────────────────────────────────
   14. MENTORING / PRICING
   Template: py-32 bg-[#111111] text-white
   Glow: absolute bg-[#4A1019]/20 blur-3xl
   Grid: grid-cols-3 gap-8
   Featured: bg-[#6B1D2A] -translate-y-6
   ────────────────────────────────────────────── */

.bo-mentoring {
    padding: var(--bo-section-py) 0;
    padding-bottom: 10rem;
    background: var(--bo-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Atmospheric glow */
.bo-mentoring::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(74, 16, 25, 0.2);
    filter: blur(48px);
    pointer-events: none;
}

/* Header — text-center mb-24 max-w-4xl mx-auto */
.bo-mentoring__header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.bo-mentoring__icon {
    color: var(--bo-gold);
    opacity: 0.8;
    margin: 0 auto 1.5rem;
    display: block;
}

.bo-mentoring__header .bo-eyebrow {
    margin-bottom: 1.5rem;
}

.bo-mentoring__header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 2rem;
    line-height: 1.2;
    font-family: var(--bo-font-serif);
    color: #fff;
}

@media (min-width: 768px) {
    .bo-mentoring__header h2 {
        font-size: 3.75rem;
    }
}

.bo-mentoring__header p {
    font-size: 1.25rem;
    color: #9ca3af;
    font-weight: 300;
    line-height: 1.625;
}

/* Pricing Grid */
.bo-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

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

/* Pricing Card — border border-white/10 p-12 bg-white/5 */
.bo-pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.bo-pricing-card:hover {
    border-color: rgba(197, 165, 90, 0.5);
}

.bo-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bo-gold);
    margin: 0 0 0.5rem;
    font-family: var(--bo-font-serif);
}

/* Price — text-4xl font-bold font-serif */
.bo-pricing-card__price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--bo-font-serif);
}

.bo-pricing-card__price span {
    font-size: 0.875rem;
    font-family: var(--bo-font-sans);
    font-weight: 300;
    color: #9ca3af;
}

.bo-pricing-card p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0 0 2.5rem;
}

.bo-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.bo-pricing-card ul li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #e5e7eb;
}

.bo-pricing-card ul li::before {
    content: '›';
    color: var(--bo-gold);
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Card Button */
.bo-pricing-card__btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
}

.bo-pricing-card__btn:hover {
    background: #fff;
    color: var(--bo-dark);
}

/* Featured card — bg-[#6B1D2A] -translate-y-6 shadow-2xl */
.bo-pricing-card--featured {
    background: var(--bo-primary);
    border-color: rgba(197, 165, 90, 0.5);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
    .bo-pricing-card--featured {
        transform: translateY(-1.5rem);
    }
}

.bo-pricing-card--featured p {
    color: #e5e7eb;
}

.bo-pricing-card--featured .bo-pricing-card__price {
    font-size: 3rem;
}

.bo-pricing-card--featured .bo-pricing-card__price span {
    color: #d1d5db;
}

/* Featured badge — absolute top-0 right-0 bg-gold */
.bo-pricing-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bo-gold);
    color: var(--bo-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Featured button — bg-white text-[#6B1D2A] */
.bo-pricing-card__btn--featured {
    background: #fff;
    color: var(--bo-primary);
    border-color: #fff;
}

.bo-pricing-card__btn--featured:hover {
    background: var(--bo-gold);
    color: var(--bo-dark);
    border-color: var(--bo-gold);
}

/* ──────────────────────────────────────────────
   15. CONTACT + NEWSLETTER SPLIT
   Compact, sleek split layout
   ────────────────────────────────────────────── */

.bo-contact-split {
    background: #fff;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .bo-contact-split {
        flex-direction: row;
    }
}

.bo-contact-panel {
    width: 100%;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-contact-panel {
        padding: 3.5rem 4rem;
    }
}

@media (min-width: 1024px) {
    .bo-contact-panel {
        width: 50%;
    }
}

.bo-contact-panel--form {
    background: var(--bo-bg);
}

.bo-contact-panel--form .bo-eyebrow {
    margin-bottom: 0.5rem;
    text-align: center;
}

.bo-contact-panel--form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: var(--bo-text);
    margin: 0 0 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .bo-contact-panel--form h2 {
        font-size: 2.25rem;
    }
}

/* Form wrapper — center and constrain width */
.bo-cf7-form {
    width: 100%;
    max-width: 28rem;
}

/* CF7 form styling */
.bo-cf7-form .hidden-fields-container {
    display: none;
}

.bo-cf7-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* CF7 wraps fields in <p> tags — style those as the layout containers */
.bo-cf7-form .wpcf7-form p {
    margin: 0;
}

.bo-cf7-form .wpcf7-form p br {
    display: none;
}

.bo-cf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 0.25rem;
}

.bo-cf7-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]) {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d1d5db;
    padding: 0.6rem 0;
    font-size: 0.8125rem;
    color: var(--bo-text);
    transition: border-color 0.3s ease;
    font-family: var(--bo-font-sans);
    display: block;
}

.bo-cf7-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):focus {
    outline: none;
    border-bottom-color: var(--bo-primary);
}

.bo-cf7-form .wpcf7-form-control::placeholder {
    color: #9ca3af;
}

.bo-cf7-form textarea.wpcf7-form-control {
    resize: none;
    min-height: 60px;
}

/* Acceptance / GDPR checkbox */
.bo-cf7-form .wpcf7-acceptance {
    display: block;
}

.bo-cf7-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.bo-cf7-form .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--bo-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.bo-cf7-form .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 0.15rem;
    accent-color: var(--bo-primary);
    flex-shrink: 0;
}

.bo-cf7-form .wpcf7-acceptance a {
    color: var(--bo-primary);
    text-decoration: underline;
}

.bo-cf7-form input[type="submit"],
.bo-cf7-form .wpcf7-submit {
    background: var(--bo-text);
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--bo-font-sans);
    width: 100%;
    margin-top: 0.75rem;
}

@media (min-width: 640px) {

    .bo-cf7-form input[type="submit"],
    .bo-cf7-form .wpcf7-submit {
        width: auto;
    }
}

.bo-cf7-form input[type="submit"]:hover,
.bo-cf7-form .wpcf7-submit:hover {
    background: var(--bo-primary);
}

/* CF7 validation and response messages */
.bo-cf7-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 0.2rem;
    display: block;
}

/* Hidden by default — only visible when CF7 populates a message */
.bo-cf7-form .wpcf7-response-output {
    display: none;
}

.bo-cf7-form .wpcf7-form.sent .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.invalid .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.failed .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.unaccepted .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.spam .wpcf7-response-output {
    display: block;
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    border: 1px solid #e5e7eb;
}

.bo-cf7-form .wpcf7-form.sent .wpcf7-response-output {
    border-color: #16a34a;
    color: #16a34a;
    background: #f0fdf4;
}

.bo-cf7-form .wpcf7-form.invalid .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.failed .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.unaccepted .wpcf7-response-output,
.bo-cf7-form .wpcf7-form.spam .wpcf7-response-output {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

/* Newsletter Panel */
.bo-contact-panel--newsletter {
    background: var(--bo-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.bo-contact-panel__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg,
            #C5A55A 0,
            #C5A55A 1px,
            transparent 0,
            transparent 50%);
    background-size: 60px 60px;
}

.bo-contact-panel__content {
    position: relative;
    z-index: 10;
    max-width: 28rem;
    text-align: center;
}

.bo-newsletter__icon {
    color: var(--bo-gold);
    margin: 0 auto 1.25rem;
    display: block;
}

.bo-contact-panel__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    margin: 0 0 0.75rem;
    color: #fff;
}

.bo-contact-panel__content p {
    color: #9ca3af;
    font-size: 0.8125rem;
    margin: 0 0 1.5rem;
    line-height: 1.625;
}

/* Newsletter form */
.bo-newsletter-form {
    margin-bottom: 1rem;
}

.bo-newsletter-form__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.bo-newsletter-form__row:focus-within {
    border-bottom-color: var(--bo-gold);
}

.bo-newsletter-form__row input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.875rem;
    font-family: var(--bo-font-sans);
}

.bo-newsletter-form__row input::placeholder {
    color: #6b7280;
}

.bo-newsletter-form__row input:focus {
    outline: none;
}

.bo-newsletter-form__row button {
    background: none;
    border: none;
    color: var(--bo-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: 1rem;
    font-family: var(--bo-font-sans);
}

.bo-newsletter-form__row button:hover {
    color: #fff;
}

.bo-newsletter__gdpr {
    font-size: 0.6rem;
    color: #6b7280;
}

.bo-newsletter__gdpr a {
    color: var(--bo-gold);
    text-decoration: underline;
}

/* ──────────────────────────────────────────────
   16. FOOTER
   Template: bg-[#1A1A1A] text-gray-400 py-20
   Grid: grid-cols-12 gap-12
   ────────────────────────────────────────────── */

.bo-footer {
    background: var(--bo-text);
    color: #9ca3af;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.bo-footer__container {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
}

@media (min-width: 768px) {
    .bo-footer__container {
        padding: 0 var(--bo-px-md);
    }
}

.bo-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .bo-footer__grid {
        grid-template-columns: 4fr 2fr 2fr 2fr;
        gap: 3rem;
    }
}

/* Brand column */
.bo-footer__brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--bo-font-serif);
    margin-bottom: 0.5rem;
}

.bo-footer__brand-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bo-gold);
    margin: 0 0 2rem;
}

.bo-footer__bio {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 20rem;
    margin: 0 0 2rem;
    line-height: 1.625;
}

.bo-footer__socials {
    display: flex;
    gap: 1.5rem;
}

.bo-footer__socials a {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.bo-footer__socials a:hover {
    color: #fff;
}

/* Footer columns */
.bo-footer__col h4 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 1.5rem;
}

.bo-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bo-footer__col li a {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.bo-footer__col li a:hover {
    color: var(--bo-gold);
}

/* Footer bottom */
.bo-footer__bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .bo-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.bo-footer__bottom p {
    margin: 0;
}

.bo-footer__tagline {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.6rem;
}

/* ──────────────────────────────────────────────
   17. PAGE HERO (inner pages)
   ────────────────────────────────────────────── */

.bo-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bo-dark);
    overflow: hidden;
}

.bo-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(17, 17, 17, 0.85),
            rgba(74, 16, 25, 0.7),
            rgba(17, 17, 17, 0.9));
}

.bo-page-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem var(--bo-px);
    max-width: 56rem;
}

@media (min-width: 768px) {
    .bo-page-hero__content {
        padding: 8rem var(--bo-px-md);
    }
}

.bo-page-hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--bo-font-serif);
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .bo-page-hero__content h1 {
        font-size: 4rem;
    }
}

.bo-page-hero__content p {
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 300;
    margin: 0;
}

/* ──────────────────────────────────────────────
   18. ABOUT FULL PAGE
   ────────────────────────────────────────────── */

.bo-about-full {
    padding: var(--bo-section-py) 0;
    background: #fff;
}

.bo-about-full .bo-section-container {
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 0 var(--bo-px);
}

@media (min-width: 768px) {
    .bo-about-full .bo-section-container {
        padding: 0 var(--bo-px-md);
    }
}

.bo-about-full__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .bo-about-full__grid {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
    }
}

.bo-about-full__image {
    position: relative;
}

.bo-about-full__image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(197, 165, 90, 0.3);
    transform: translate(1rem, 1rem);
    pointer-events: none;
}

.bo-about-full__image img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 1s ease;
}

.bo-about-full__image img:hover {
    filter: grayscale(0%);
}

.bo-about-full__content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 1.5rem;
}

.bo-about-full__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 2.5rem 0 1.5rem;
}

.bo-about-full__content p {
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.bo-about-full__values {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bo-about-full__values li {
    color: var(--bo-text-muted);
    line-height: 1.75;
}

.bo-about-full__values li strong {
    color: var(--bo-text);
}

.bo-about-full__expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.bo-about-full__expertise span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--bo-text-muted);
    border-radius: 0.25rem;
}

.bo-about-full__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ──────────────────────────────────────────────
   19. SINGLE BOOK PAGE — Premium Redesign
   ────────────────────────────────────────────── */

/* ── 19a. CINEMATIC BOOK HERO ── */
.bo-book-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bo-book-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bo-book-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px) brightness(0.3);
    transform: scale(1.1);
}

.bo-book-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(17, 17, 17, 0.92) 0%,
            rgba(74, 16, 25, 0.85) 50%,
            rgba(17, 17, 17, 0.95) 100%);
}

.bo-book-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--bo-container);
    margin: 0 auto;
    padding: 8rem var(--bo-px) 5rem;
}

@media (min-width: 768px) {
    .bo-book-hero__content {
        padding: 10rem var(--bo-px-md) 6rem;
    }
}

.bo-book-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-book-hero__inner {
        grid-template-columns: 280px 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .bo-book-hero__inner {
        grid-template-columns: 320px 1fr;
        gap: 5rem;
    }
}

/* Cover in hero */
.bo-book-hero__cover-wrap {
    display: flex;
    justify-content: center;
}

.bo-book-hero__cover {
    width: 100%;
    max-width: 280px;
    height: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .bo-book-hero__cover {
        max-width: 320px;
    }
}

.bo-book-hero__cover-placeholder {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 2 / 3;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .bo-book-hero__cover-placeholder {
        max-width: 320px;
    }
}

.bo-book-hero__cover-placeholder h3 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
    font-family: var(--bo-font-serif);
    margin: 0;
}

/* Hero info */
.bo-book-hero__info {
    color: #fff;
}

.bo-book-hero__info .bo-eyebrow {
    margin-bottom: 0.75rem;
}

.bo-book-hero__info h1 {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .bo-book-hero__info h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .bo-book-hero__info h1 {
        font-size: 3.5rem;
    }
}

.bo-book-hero__author {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 300;
    margin: 0 0 1.25rem;
    font-style: italic;
}

/* Star rating in hero */
.bo-book-hero__rating {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bo-star--full {
    color: var(--bo-gold);
}

.bo-star--half {
    color: var(--bo-gold);
    opacity: 0.5;
}

.bo-star--empty {
    color: rgba(255, 255, 255, 0.2);
}

.bo-star-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bo-gold);
    margin-left: 0.5rem;
    font-family: var(--bo-font-sans);
}

/* Format tags */
.bo-book-hero__formats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bo-book-hero__format-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(197, 165, 90, 0.4);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bo-gold);
    border-radius: 2px;
}

/* Buy section in hero */
.bo-book-hero__buy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.bo-book-hero__prices {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.bo-book-hero__price-item {
    display: flex;
    flex-direction: column;
}

.bo-book-hero__price-amount {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: #fff;
    line-height: 1;
}

.bo-book-hero__price-label {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.bo-book-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Buy Buttons (shared across hero + strip) ── */
.bo-btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.bo-btn-buy svg {
    flex-shrink: 0;
}

.bo-btn-buy small {
    font-weight: 400;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 0.25rem;
}

.bo-btn-buy--findafresh {
    background: var(--bo-gold);
    color: var(--bo-dark);
}

.bo-btn-buy--findafresh:hover {
    background: var(--bo-gold-light);
    color: var(--bo-dark);
}

.bo-btn-buy--amazon {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.bo-btn-buy--amazon:hover {
    background: #fff;
    color: var(--bo-dark);
    border-color: #fff;
}

/* In light context (buy strip), invert amazon button */
.bo-book-buy-strip .bo-btn-buy--amazon {
    border-color: var(--bo-text);
    color: var(--bo-text);
}

.bo-book-buy-strip .bo-btn-buy--amazon:hover {
    background: var(--bo-text);
    color: #fff;
}

/* ── 19b. BOOK OVERVIEW SECTION ── */
.bo-book-overview {
    padding: var(--bo-section-py) 0;
    background: #fff;
}

.bo-book-overview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .bo-book-overview__grid {
        grid-template-columns: 1.6fr 1fr;
        gap: 5rem;
    }
}

.bo-book-overview__main .bo-eyebrow {
    margin-bottom: 0.5rem;
}

.bo-book-overview__main h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 1.5rem;
}

.bo-book-overview__main p {
    color: var(--bo-text-muted);
    font-size: 1.0625rem;
    line-height: 1.85;
    font-weight: 300;
}

/* Details sidebar card */
.bo-book-overview__details-card {
    background: var(--bo-bg);
    padding: 2.5rem;
    border-left: 3px solid var(--bo-gold);
}

.bo-book-overview__details-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bo-text);
    margin: 0 0 1.5rem;
    font-family: var(--bo-font-sans);
}

.bo-book-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.bo-book-dl dt {
    font-weight: 600;
    color: var(--bo-text);
    white-space: nowrap;
}

.bo-book-dl dd {
    color: var(--bo-text-muted);
    margin: 0;
}

/* ── 19c. BUY STRIP ── */
.bo-book-buy-strip {
    padding: 4rem 0;
    background: var(--bo-bg);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.bo-book-buy-strip__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .bo-book-buy-strip__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.bo-book-buy-strip__text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: var(--bo-text);
    margin: 0 0 0.5rem;
}

.bo-book-buy-strip__text p {
    color: var(--bo-text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.bo-book-buy-strip__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── 19d. RELATED BOOKS ── */
.bo-book-related {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

.bo-book-related__header {
    margin-bottom: 3rem;
}

.bo-book-related__header .bo-eyebrow {
    margin-bottom: 0.5rem;
}

.bo-book-related__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0;
}

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

@media (min-width: 1024px) {
    .bo-books__grid--related {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bo-book-related__view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ── Legacy single book styles (keep for backward compat) ── */

.bo-single-book {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

.bo-single-book__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .bo-single-book__grid {
        grid-template-columns: 1fr 2fr;
    }
}

.bo-single-book__cover-wrap {
    position: relative;
}

.bo-single-book__cover {
    width: 100%;
    height: auto;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bo-single-book__details .bo-eyebrow {
    margin-bottom: 0.75rem;
}

.bo-single-book__details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 1.5rem;
}

.bo-single-book__overview {
    font-size: 1.125rem;
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.bo-book-info-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.bo-book-info-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.bo-book-info-table td:first-child {
    font-weight: 600;
    color: var(--bo-text);
    width: 120px;
}

.bo-book-info-table td:last-child {
    color: var(--bo-text-muted);
}

.bo-single-book__pricing {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.bo-single-book__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bo-primary);
    font-family: var(--bo-font-serif);
}

.bo-single-book__price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--bo-text-muted);
    font-family: var(--bo-font-sans);
}

.bo-star-rating {
    font-size: 1.25rem;
    color: var(--bo-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.bo-single-book__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   20. BOOKS ARCHIVE PAGE
   ────────────────────────────────────────────── */

.bo-archive-series {
    padding: var(--bo-section-py) 0;
}

.bo-archive-series--dark {
    background: var(--bo-dark);
}

.bo-archive-series--light {
    background: var(--bo-bg);
}

.bo-archive-series--dark .bo-book-card__meta {
    color: #fff;
}

.bo-archive-series--dark .bo-book-card__title {
    color: #fff;
}

.bo-archive-series--dark .bo-book-card__series {
    color: var(--bo-gold);
}

.bo-buy-section {
    padding: 5rem 0;
    background: var(--bo-primary-dark);
}

/* ──────────────────────────────────────────────
   21. WHAT I DO PAGE
   ────────────────────────────────────────────── */

.bo-wid-content {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

.bo-wid-section {
    margin-bottom: 4rem;
}

.bo-wid-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bo-gold);
}

/* ──────────────────────────────────────────────
   22. MENTORING PAGE — Premium Redesign
   ────────────────────────────────────────────── */

/* ── 22a. MENTORING HERO ── */
.bo-page-hero--mentoring-pro {
    min-height: 65vh;
}

.bo-page-hero--mentoring-pro .bo-page-hero__content {
    max-width: 52rem;
}

.bo-mentoring-hero__icon {
    color: var(--bo-gold);
    opacity: 0.8;
    margin: 0 auto 1.5rem;
    display: block;
}

.bo-mentoring-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ── 22b. THE JOURNEY — Process Steps ── */
.bo-mentoring-journey {
    padding: var(--bo-section-py) 0;
    background: #fff;
}

.bo-mentoring-journey__header {
    text-align: center;
    margin-bottom: 4rem;
}

.bo-mentoring-journey__header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 0;
}

.bo-mentoring-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .bo-mentoring-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Connecting line on desktop */
@media (min-width: 768px) {
    .bo-mentoring-steps::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 15%;
        right: 15%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--bo-gold), transparent);
        z-index: 0;
    }
}

.bo-mentoring-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bo-mentoring-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bo-bg);
    border: 2px solid var(--bo-gold);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: var(--bo-gold);
    margin-bottom: 1.5rem;
}

.bo-mentoring-step__icon {
    color: var(--bo-primary);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.bo-mentoring-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 0.75rem;
}

.bo-mentoring-step p {
    color: var(--bo-text-muted);
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 20rem;
    margin: 0 auto;
}

/* ── 22c. WHO THIS IS FOR ── */
.bo-mentoring-roles {
    padding: var(--bo-section-py) 0;
    background: var(--bo-dark);
    color: #fff;
}

.bo-mentoring-roles__header {
    text-align: center;
    margin-bottom: 4rem;
}

.bo-mentoring-roles__header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1rem;
}

.bo-mentoring-roles__header p {
    color: #9ca3af;
    max-width: 36rem;
    margin: 0 auto;
    font-weight: 300;
}

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

@media (min-width: 640px) {
    .bo-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.bo-role-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.bo-role-card:hover {
    border-color: rgba(197, 165, 90, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.bo-role-card__icon {
    color: var(--bo-gold);
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.bo-role-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--bo-font-serif);
    margin: 0 0 0.5rem;
}

.bo-role-card p {
    color: #9ca3af;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

/* ── 22d. PRICING on mentoring page uses DARK context (same as homepage) ── */
.bo-mentoring-pricing {
    padding: var(--bo-section-py) 0;
    background: var(--bo-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bo-mentoring-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(74, 16, 25, 0.2);
    filter: blur(48px);
    pointer-events: none;
}

.bo-mentoring-pricing__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.bo-mentoring-pricing__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1rem;
}

@media (min-width: 768px) {
    .bo-mentoring-pricing__header h2 {
        font-size: 3rem;
    }
}

.bo-mentoring-pricing__header p {
    color: #9ca3af;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto;
}

.bo-mentoring-pricing .bo-pricing-grid {
    position: relative;
    z-index: 10;
}

/* ── 22e. TESTIMONIAL ── */
.bo-mentoring-testimonial {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

.bo-mentoring-testimonial__inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.bo-mentoring-testimonial__quote-mark {
    font-size: 8rem;
    font-family: var(--bo-font-serif);
    color: var(--bo-gold);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.bo-mentoring-testimonial__text {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--bo-text);
    line-height: 1.8;
    font-family: var(--bo-font-serif);
    margin: 0 0 2rem;
    position: relative;
    z-index: 1;
}

.bo-mentoring-testimonial__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bo-text);
}

.bo-mentoring-testimonial__role {
    font-size: 0.75rem;
    color: var(--bo-text-muted);
    margin-top: 0.25rem;
    display: block;
}

/* ── 22f. MENTORING CTA STRIP ── */
.bo-mentoring-cta {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .bo-mentoring-cta {
        flex-direction: row;
    }
}

.bo-mentoring-cta__panel {
    width: 100%;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .bo-mentoring-cta__panel {
        width: 50%;
        padding: 5rem 4rem;
    }
}

.bo-mentoring-cta__panel--dark {
    background: var(--bo-dark);
    color: #fff;
}

.bo-mentoring-cta__panel--primary {
    background: var(--bo-primary-dark);
    color: #fff;
}

.bo-mentoring-cta__panel-content {
    max-width: 28rem;
}

.bo-mentoring-cta__heading {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    margin: 0.5rem 0 1rem;
    color: #fff;
}

.bo-mentoring-cta__text {
    color: #d1d5db;
    line-height: 1.625;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ── 22g. BOOKINGPRESS POPUP MODAL ── */
.bo-booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.bo-booking-modal-overlay.is-open {
    display: flex;
}

.bo-booking-modal {
    background: #fff;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bo-booking-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.bo-booking-modal__header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--bo-font-serif);
    color: var(--bo-text);
    margin: 0;
}

.bo-booking-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--bo-bg);
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--bo-text-muted);
    transition: all 0.2s ease;
    border-radius: 50%;
}

.bo-booking-modal__close:hover {
    background: #e5e7eb;
    color: var(--bo-text);
}

.bo-booking-modal__body {
    padding: 2rem;
}

/* ──────────────────────────────────────────────
   23. OPPORTUNITIES PAGE
   ────────────────────────────────────────────── */

.bo-opps-archive {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

/* Filter pills */
.bo-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.bo-filter-pill {
    padding: 0.5rem 1.25rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bo-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 9999px;
}

.bo-filter-pill:hover,
.bo-filter-pill.is-active {
    background: var(--bo-text);
    color: #fff;
    border-color: var(--bo-text);
}

/* Opportunity cards grid */
.bo-opps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bo-opps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.bo-opp-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bo-opp-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--bo-gold);
}

.bo-opp-card--featured {
    border-color: var(--bo-gold);
    border-width: 2px;
}

.bo-opp-card__header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 0.25rem;
}

.bo-opp-card__header p {
    font-size: 0.875rem;
    color: var(--bo-text-muted);
    margin: 0 0 1rem;
}

.bo-opp-card__badges {
    margin-bottom: 1rem;
}

.bo-opp-card__info {
    font-size: 0.875rem;
    color: var(--bo-text-muted);
    margin-bottom: 1.5rem;
}

.bo-opp-card__info span {
    display: block;
    margin-bottom: 0.25rem;
}

.bo-opp-card__closing {
    color: var(--bo-primary);
}

/* CTA section */
.bo-opps-archive__cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.bo-opps-archive__cta p {
    color: var(--bo-text-muted);
    margin-bottom: 1.5rem;
}

.bo-opps-archive__disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* ──────────────────────────────────────────────
   24. CONTACT PAGE
   ────────────────────────────────────────────── */

.bo-contact-page {
    padding: var(--bo-section-py) 0;
    background: var(--bo-bg);
}

.bo-contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .bo-contact-page__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bo-contact-page__form h2,
.bo-contact-page__info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 2rem;
}

.bo-contact-info__item {
    margin-bottom: 2rem;
}

.bo-contact-info__item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 0.5rem;
}

.bo-contact-info__item p {
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin: 0;
}

.bo-contact-info__item a {
    color: var(--bo-primary);
    text-decoration: underline;
}

.bo-contact-info__social {
    margin-top: 2rem;
}

.bo-contact-info__social h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bo-text);
    margin: 0 0 1rem;
}

.bo-contact-info__links {
    display: flex;
    gap: 1.5rem;
}

.bo-contact-info__links a {
    color: var(--bo-text-muted);
    transition: color 0.3s ease;
}

.bo-contact-info__links a:hover {
    color: var(--bo-primary);
}

/* ──────────────────────────────────────────────
   25. LEGAL PAGES
   ────────────────────────────────────────────── */

.bo-legal-page {
    padding: 4rem 0 var(--bo-section-py);
    background: var(--bo-bg);
}

.bo-legal-container {
    max-width: 50rem;
}

.bo-legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 0 0 0.5rem;
}

.bo-legal__updated {
    font-size: 0.875rem;
    color: var(--bo-text-muted);
    margin-bottom: 3rem;
}

.bo-legal-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bo-text);
    font-family: var(--bo-font-serif);
    margin: 2.5rem 0 1rem;
}

.bo-legal-page h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bo-text);
    margin: 2rem 0 0.75rem;
}

.bo-legal-page p {
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bo-legal-page ul {
    color: var(--bo-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.bo-legal-page a {
    color: var(--bo-primary);
    text-decoration: underline;
}

.bo-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.bo-legal-table th,
.bo-legal-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    text-align: left;
}

.bo-legal-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: var(--bo-text);
}

.bo-legal-table td {
    color: var(--bo-text-muted);
}

/* ──────────────────────────────────────────────
   26. 404 PAGE
   ────────────────────────────────────────────── */

.bo-404 {
    background: var(--bo-bg);
}

/* ──────────────────────────────────────────────
   27. ARCHIVE REDIRECT
   ────────────────────────────────────────────── */

.bo-archive-redirect {
    padding: 6rem 2rem;
    text-align: center;
}

.bo-archive-redirect a {
    color: var(--bo-primary);
    text-decoration: underline;
}

/* ──────────────────────────────────────────────
   28. BOOKINGPRESS OVERRIDES
   ────────────────────────────────────────────── */

.bpa-front-module--main-wrapper {
    font-family: var(--bo-font-sans) !important;
}

.bpa-front-module--main-wrapper .bpa-front-module--heading {
    font-family: var(--bo-font-serif) !important;
}

/* BookingPress inside popup modal */
.bo-booking-modal .bpa-front-module--main-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

/* BookingPress brand colors — applies to both modal and standalone pages */
.bpa-front-module--main-wrapper .bpa-front-fb--item.is-selected,
.bpa-front-module--main-wrapper .bpa-front-fb--item:hover {
    border-color: var(--bo-primary) !important;
}

.bpa-front-module--main-wrapper .el-button--primary,
.bpa-front-module--main-wrapper .bpa-front-btn--primary {
    background-color: var(--bo-primary) !important;
    border-color: var(--bo-primary) !important;
}

.bpa-front-module--main-wrapper .el-button--primary:hover,
.bpa-front-module--main-wrapper .bpa-front-btn--primary:hover {
    background-color: var(--bo-primary-dark) !important;
    border-color: var(--bo-primary-dark) !important;
}

/* BookingPress standalone page styling */
.bpa-front-module--main-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
}

.bpa-front-data-empty-view {
    text-align: center;
    padding: 3rem 2rem;
}

.bpa-front-data-empty-view h4 {
    font-family: var(--bo-font-serif);
    font-size: 1.25rem;
    color: var(--bo-text);
    margin-bottom: 1.5rem;
}

.bpa-front-data-empty-view a {
    color: var(--bo-primary);
}

/* ──────────────────────────────────────────────
   29. PRINT STYLES
   ────────────────────────────────────────────── */

@media print {

    .bo-navbar,
    .bo-mobile-overlay,
    .bo-footer,
    .bo-scroll-indicator {
        display: none;
    }

    body {
        background: #fff;
    }
}


/* ═══════════════════════════════════════════
   SINGLE POST (WHAT I DO) TEMPLATE
   ═══════════════════════════════════════════ */

/* Hero uses site-wide .bo-page-hero pattern (dark bg, overlay, gold eyebrow, white h1) */
.bo-page-hero--single-post {
    min-height: 45vh;
}

/* Article body below the hero */
.bo-single-post {
    padding: 4rem 2rem;
    background: #fff;
}

.bo-single-post .bo-section-container {
    max-width: 48rem;
    margin: 0 auto;
}

.bo-single-post__featured {
    margin-bottom: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.bo-single-post__featured img {
    width: 100%;
    height: auto;
    display: block;
}

.bo-single-post__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--bo-text-muted);
}

.bo-single-post__content p {
    margin-bottom: 1.5rem;
}

.bo-single-post__content h2,
.bo-single-post__content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--bo-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.bo-single-post__footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.bo-single-post__cta {
    background: #FAFAFA;
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
}

.bo-single-post__cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.bo-single-post__cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.bo-single-post__cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SEARCH RESULTS TEMPLATE
   ═══════════════════════════════════════════ */
.bo-search-results {
    padding: 6rem 2rem 4rem;
}

.bo-search-results .bo-section-container {
    max-width: 56rem;
    margin: 0 auto;
}

.bo-search-results__header {
    margin-bottom: 2rem;
}

.bo-search-results__header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 0.5rem;
}

.bo-search-results__form {
    margin-bottom: 3rem;
}

.bo-search-form {
    display: flex;
    gap: 1rem;
    max-width: 32rem;
}

.bo-search-form__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bo-search-form__input:focus {
    outline: none;
    border-color: #6B1D2A;
}

.bo-search-result-card {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.bo-search-result-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bo-search-result-card a:hover h2 {
    color: #6B1D2A;
}

.bo-search-result-card__type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C5A55A;
    margin-bottom: 0.5rem;
}

.bo-search-result-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.bo-search-result-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.bo-search-results__pagination {
    margin-top: 3rem;
    text-align: center;
}

.bo-search-results__pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bo-search-results__pagination .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bo-search-results__pagination .page-numbers.current,
.bo-search-results__pagination .page-numbers:hover {
    background: #6B1D2A;
    color: #fff;
    border-color: #6B1D2A;
}

.bo-search-results__empty {
    text-align: center;
    padding: 4rem 0;
}

.bo-search-results__empty p {
    color: #555;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.bo-search-results__suggestions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   LOOP TEMPLATES (Elementor Loop Items)
   ═══════════════════════════════════════════ */
.bo-loop-book-card {
    transition: transform 0.3s ease;
}

.bo-loop-book-card:hover {
    transform: translateY(-0.5rem);
}

.bo-loop-opp-row {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
    .bo-loop-opp-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ═══════════════════════════════════════════
   GENERIC PAGE TEMPLATE (page.php)
   Legal pages, standard WP pages with hero
   ═══════════════════════════════════════════ */
.bo-page-hero--default {
    min-height: 40vh;
}

.bo-page-content {
    padding: 4rem 0 var(--bo-section-py);
    background: var(--bo-bg);
}

.bo-page-content .bo-section-container {
    max-width: 50rem;
}

/* ═══════════════════════════════════════════
   ABOUT GALLERY CROSSFADE
   Multi-image rotating gallery for homepage
   ═══════════════════════════════════════════ */
.bo-about__gallery {
    position: relative;
    width: 100%;
    height: 600px;
    z-index: 10;
}

.bo-about__gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0;
    transition: opacity 1.5s ease, filter 1s ease;
}

.bo-about__gallery-img.is-active {
    opacity: 1;
}

.bo-about__gallery.is-hovered .bo-about__gallery-img.is-active {
    filter: grayscale(0%);
}

/* ═══════════════════════════════════════════
   GLOBAL IMAGE SAFETY
   ═══════════════════════════════════════════ */
img {
    max-width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════
   FLEX-WRAP FIXES (all screen sizes)
   ═══════════════════════════════════════════ */
.bo-book-hero__prices,
.bo-single-book__pricing,
.bo-book-spotlight__pricing {
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   TOUCH TARGET MINIMUM (44px for WCAG 2.5.5)
   ═══════════════════════════════════════════ */
.bo-btn-primary,
.bo-btn-outline-dark,
.bo-btn-outline-white,
.bo-btn-gold,
.bo-btn-outline-gold,
.bo-pricing-card__btn {
    min-height: 44px;
}

/* ═══════════════════════════════════════════
   PRICE LABEL (replaces <small> in templates)
   ═══════════════════════════════════════════ */
.bo-price-label {
    font-size: 0.75rem;
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   RELATED BOOKS GRID — single column on phones
   ═══════════════════════════════════════════ */
.bo-books__grid--related {
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .bo-books__grid--related {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   STAT CARD TABLET FIX
   ═══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
    .bo-about__stat-card {
        right: 0;
        bottom: -2rem;
    }
}

/* ═══════════════════════════════════════════
   MOBILE OPTIMIZATIONS (max-width: 767px)
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Global section padding reduction (8rem → 3.5rem) */
    :root {
        --bo-section-py: 3.5rem;
    }

    /* Images: fixed 600px heights → responsive */
    .bo-about__image {
        height: 350px;
    }

    .bo-about-full__image img {
        height: 350px;
    }

    .bo-about__gallery {
        height: 350px;
    }

    /* Navbar mobile menu text */
    .bo-mobile-item {
        font-size: clamp(1.25rem, 5vw, 1.875rem);
    }

    .bo-mobile-contact-btn {
        padding: 1rem 2rem;
    }

    /* Heading font sizes — prevent oversized headings */
    .bo-about__text h2 {
        font-size: 2rem;
    }

    .bo-books__header h2,
    .bo-archive-series__header h2 {
        font-size: 1.75rem;
    }

    /* Series panel padding (4rem all sides → compact) */
    .bo-series-panel {
        padding: 2.5rem 1.5rem;
    }

    /* Pricing cards (3rem → compact) */
    .bo-pricing-card {
        padding: 2rem 1.5rem;
    }

    .bo-pricing-card--featured .bo-pricing-card__price {
        font-size: 2.25rem;
    }

    /* Mentoring section padding-bottom (10rem → 4rem) */
    .bo-mentoring {
        padding-bottom: 4rem;
    }

    /* CTA split panels (5rem → 3rem) */
    .bo-books-cta__panel,
    .bo-mentoring-cta__panel {
        padding: 3rem 1.5rem;
    }

    /* Footer (5rem → 3rem) */
    .bo-footer {
        padding: 3rem 0;
    }

    /* Book detail grid → single column */
    .bo-book-dl {
        grid-template-columns: 1fr;
    }

    .bo-book-dl dt {
        margin-top: 0.75rem;
    }

    /* Book info table label width */
    .bo-book-info-table td:first-child {
        width: 90px;
    }

    /* Booking modal tighter padding */
    .bo-booking-modal__body {
        padding: 1.25rem;
    }

    .bo-booking-modal__header {
        padding: 1rem 1.25rem;
    }

    /* ── Additional mobile overrides ── */

    /* Page hero headings */
    .bo-page-hero__content h1 {
        font-size: 2rem;
    }

    /* Mentoring section header */
    .bo-mentoring__header h2 {
        font-size: 2rem;
    }

    /* Book spotlight title */
    .bo-book-spotlight__title {
        font-size: 1.75rem;
    }

    /* Books CTA heading */
    .bo-books-cta__heading {
        font-size: 1.75rem;
    }

    /* Single book details heading */
    .bo-single-book__details h1 {
        font-size: 1.75rem;
    }

    /* About full page heading */
    .bo-about-full__content h2 {
        font-size: 1.75rem;
    }

    /* Contact panel heading */
    .bo-contact-panel--form h2 {
        font-size: 1.5rem;
    }

    /* Search results top padding */
    .bo-search-results {
        padding-top: 4rem;
    }

    /* BookingPress form container */
    .bpa-front-module--main-wrapper {
        padding: 1rem !important;
    }

    /* Opportunities row padding */
    .bo-opp-row {
        padding: 1.25rem 0.75rem;
    }

    /* ── Hero heading — clamp for very narrow screens ── */
    .bo-hero-h1 {
        font-size: clamp(1.875rem, 7vw, 3rem);
    }

    /* ── Scroll indicator — hide on mobile to prevent overlap with CTAs ── */
    .bo-scroll-indicator {
        display: none;
    }

    /* ── Section heading reductions ── */
    .bo-series-panel__content h3 {
        font-size: 1.75rem;
    }

    .bo-mentoring-pricing__header h2 {
        font-size: 1.75rem;
    }

    .bo-wid-preview__header h2 {
        font-size: 1.75rem;
    }

    .bo-opportunities__header h2 {
        font-size: 1.75rem;
    }

    .bo-mentoring-journey__header h2 {
        font-size: 1.75rem;
    }

    .bo-mentoring-roles__header h2 {
        font-size: 1.75rem;
    }

    .bo-mentoring-cta__heading {
        font-size: 1.5rem;
    }

    /* ── Large margin/padding reductions ── */
    .bo-footer__bottom {
        margin-top: 2.5rem;
    }

    .bo-mentoring__header {
        margin-bottom: 3rem;
    }

    .bo-books__view-all {
        margin-top: 2.5rem;
    }

    /* ── Decorative borders — prevent bleed on mobile ── */
    .bo-about__image-wrap,
    .bo-about-full__image {
        overflow: hidden;
    }

    /* ── Quote mark — smaller on mobile ── */
    .bo-mentoring-testimonial__quote-mark {
        font-size: 3.5rem;
    }

    /* ── Contact info links — wrap on narrow screens ── */
    .bo-contact-info__links {
        flex-wrap: wrap;
    }

    /* ── Legal tables — horizontal scroll ── */
    .bo-legal-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Search form — wrap input + button ── */
    .bo-search-form {
        flex-wrap: wrap;
    }

    .bo-search-form__input {
        width: 100%;
    }

    /* ── BookingPress pages — site-themed wrapper ── */
    .bo-page-content .bpa-front-module--main-wrapper {
        padding: 0.75rem !important;
    }

    .bo-page-content .bpa-front-module--main-wrapper .bpa-front-tabs-block {
        flex-direction: column;
    }

    /* ── Page content — overflow protection ── */
    .bo-page-content img {
        max-width: 100%;
        height: auto;
    }

    .bo-page-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Single post CTA — stack buttons ── */
    .bo-single-post__cta {
        flex-direction: column;
    }

    .bo-single-post__cta a {
        text-align: center;
    }

    /* ── Search suggestions — wrap ── */
    .bo-search-results__suggestions {
        flex-wrap: wrap;
    }
}