/* ============================================
   SETH SANTORO - LUXURY WEBSITE STYLES
   Blue Monochrome Palette Edition
   ============================================ */

:root {
    /* Blue Monochrome Color Palette */
    --ateneo-blue: #003A6B;
    --blue-sapphire: #1B5886;
    --queen-blue: #3776A1;
    --silver-lake: #5293BB;
    --iceberg: #6EB1D6;
    --baby-blue: #89CFF1;
    --cream: #f0f6fa;

    /* Mapped Colors for Design System */
    --darkest: #003A6B;
    --dark-primary: #1B5886;
    --medium-teal: #3776A1;
    --light-teal: #5293BB;
    --dark-teal: #3776A1;
    --mint-teal: #5293BB;

    /* Accents - Blue highlights */
    --gold: #89CFF1;
    --gold-light: #a8ddf7;
    --blue-gray: #6EB1D6;
    --white: #FFFFFF;

    /* Typography - Masculine Fonts */
    --font-display: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Roboto Condensed', 'Arial Narrow', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--darkest);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Subtle grain overlay */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, var(--darkest) 0%, transparent 100%);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(0, 58, 107, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(137, 207, 241, 0.4);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--darkest);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(137, 207, 241, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button.nav-cta {
    padding: 0.6rem 1.5rem;
}

.cta-button.filled {
    background: var(--gold);
    color: var(--darkest);
}

.cta-button.filled:hover {
    background: var(--gold-light);
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 4rem 6rem;
    background: 
        radial-gradient(ellipse at 20% 80%, var(--dark-teal) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--medium-teal) 0%, transparent 40%),
        linear-gradient(180deg, var(--darkest) 0%, var(--dark-primary) 100%);
    text-align: center;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(243, 239, 234, 0.7);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out 0.2s both;
}

/* ============================================
   HOME PAGE HERO (full height)
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 4rem;
    background: 
        radial-gradient(ellipse at 20% 80%, var(--dark-teal) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--medium-teal) 0%, transparent 40%),
        linear-gradient(180deg, var(--darkest) 0%, var(--dark-primary) 100%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeUp 1.2s ease-out 0.2s both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeUp 1.2s ease-out 0.4s both;
}

.hero h1 span {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(243, 239, 234, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeUp 1.2s ease-out 0.6s both;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    position: relative;
}

.section-dark {
    background: var(--dark-primary);
}

.section-gradient {
    background: 
        radial-gradient(ellipse at 90% 10%, var(--dark-teal) 0%, transparent 40%),
        var(--darkest);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    animation: fadeIn 1s ease-out;
}


.section-header.section-header--compact {
    margin: 0 auto 1.5rem;
}

.section-header.section-header--compact p {
    margin-bottom: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: rgba(243, 239, 234, 0.7);
}

.content-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 10rem 4rem;
    background: var(--dark-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--darkest) 0%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
    opacity: 0.6;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-content {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--gold);
    font-style: italic;
}

.about-content p {
    color: rgba(243, 239, 234, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.credential {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(137, 207, 241, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out backwards;
}

.credential:nth-child(1) { animation-delay: 0.1s; }
.credential:nth-child(2) { animation-delay: 0.2s; }
.credential:nth-child(3) { animation-delay: 0.3s; }
.credential:nth-child(4) { animation-delay: 0.4s; }
.credential:nth-child(5) { animation-delay: 0.5s; }
.credential:nth-child(6) { animation-delay: 0.6s; }
.credential:nth-child(7) { animation-delay: 0.7s; }

.credential:hover {
    background: rgba(137, 207, 241, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Service Blocks in About Section */
.service-block {
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
}

.service-block:last-of-type {
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.service-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.service-block p {
    color: rgba(243, 239, 234, 0.75);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.includes-label {
    font-size: 0.85rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem !important;
    margin-top: 0.5rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-list li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(243, 239, 234, 0.75);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-list li:hover {
    padding-left: 2rem;
    color: rgba(243, 239, 234, 0.95);
}

.service-list li:hover::before {
    content: '●';
}

/* ============================================
   OFFERINGS/SERVICES CARDS
   ============================================ */

.offerings {
    padding: 10rem 4rem;
    background: 
        radial-gradient(ellipse at 90% 10%, var(--dark-teal) 0%, transparent 40%),
        var(--darkest);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offerings-tagline {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
    font-size: 1.1rem;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 0.02em;
}

.offering-card {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    padding: 3rem;
    border: 1px solid rgba(137, 207, 241, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--mint-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.offering-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(137, 207, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-card:hover::after {
    opacity: 1;
}

.offering-card:hover {
    transform: translateY(-10px);
    border-color: rgba(137, 207, 241, 0.3);
    box-shadow: 0 20px 60px rgba(55, 118, 161, 0.3);
}

.offering-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--blue-gray);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.offering-card:hover .offering-number {
    color: var(--gold);
    transform: scale(1.1);
}

.offering-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.offering-card p {
    color: rgba(243, 239, 234, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.offering-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.offering-card ul li {
    color: rgba(243, 239, 234, 0.6);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.offering-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    transition: all 0.3s ease;
}

.offering-card ul li:hover {
    color: rgba(243, 239, 234, 0.9);
    padding-left: 2rem;
}

.offering-card ul li:hover::before {
    color: var(--gold-light);
}

/* ============================================
   WHY WORK WITH ME SECTION
   ============================================ */

.why-work-with-me {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    border-top: 1px solid rgba(137, 207, 241, 0.1);
}

.why-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.why-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.why-content > p {
    color: rgba(243, 239, 234, 0.75);
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(0, 58, 107, 0.5);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(137, 207, 241, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(137, 207, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.why-card:hover {
    border-color: var(--gold);
    background: rgba(27, 88, 134, 0.5);
    transform: translateY(-10px);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(137, 207, 241, 0.4);
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

/* ============================================
   BOOKS GRID WITH ENHANCED HOVER
   ============================================ */

.books-section {
    padding: 6rem 4rem 10rem;
    background: var(--dark-primary);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.book-card:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 10;
}

.book-card img {
    width: 100%;
    max-width: 280px;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(137, 207, 241, 0.1);
    position: relative;
}

.book-card:hover img {
    box-shadow: 0 40px 100px rgba(137, 207, 241, 0.4), 0 0 50px rgba(137, 207, 241, 0.2);
    border-color: var(--gold);
    transform: rotateY(5deg) rotateX(5deg);
}

.book-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1.5rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.book-card:hover h3 {
    color: var(--gold);
    transform: translateY(-5px);
}

.book-card p {
    font-size: 0.85rem;
    color: rgba(243, 239, 234, 0.5);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.book-card:hover p {
    color: rgba(243, 239, 234, 0.8);
}

/* Audiobook section */
.audiobook-section {
    padding: 6rem 4rem;
    background: var(--darkest);
    text-align: center;
}

.audiobook-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease-out;
}

.audiobook-section audio {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
}

.audiobook-section p {
    color: rgba(243, 239, 234, 0.6);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 1rem auto;
}

/* ============================================
   DOWNLOADS/RESOURCES
   ============================================ */

.downloads {
    padding: 10rem 4rem;
    background: var(--dark-primary);
    position: relative;
}

.downloads::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 40rem;
    position: absolute;
    top: -5rem;
    left: 5%;
    color: var(--dark-teal);
    opacity: 0.3;
    line-height: 1;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.download-card {
    background: rgba(0, 58, 107, 0.5);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(137, 207, 241, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(137, 207, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.download-card:hover {
    border-color: var(--gold);
    background: rgba(27, 88, 134, 0.5);
    transform: translateY(-10px);
}

.download-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.download-card:hover .download-icon {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(137, 207, 241, 0.4);
}

.download-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.download-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--cream);
}

.download-card p {
    font-size: 0.85rem;
    color: rgba(243, 239, 234, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.download-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.25rem;
}

.download-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.download-link:hover::after {
    transform: scaleX(1);
}

/* ============================================
   CONTACT/WORK WITH ME
   ============================================ */

.contact-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(55, 118, 161, 0.3);
    padding: 3rem;
    border: 1px solid rgba(137, 207, 241, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

    /* Ensure CTA buttons align across cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-card .cta-button {
    margin-top: auto;              /* push button to the bottom of the card */
    align-self: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 207, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    border-color: rgba(137, 207, 241, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(55, 118, 161, 0.3);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.contact-card p {
    color: rgba(243, 239, 234, 0.7);
    margin-bottom: 2rem;
}

.contact-info {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.contact-info-item {
    animation: fadeUp 0.8s ease-out backwards;
}

.contact-info-item:nth-child(1) { animation-delay: 0.1s; }
.contact-info-item:nth-child(2) { animation-delay: 0.2s; }
.contact-info-item:nth-child(3) { animation-delay: 0.3s; }

.contact-info-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: rgba(243, 239, 234, 0.7);
    font-size: 0.95rem;
}

.intake-notice {
    text-align: center;
    padding: 3rem 4rem;
    background: rgba(82, 147, 187, 0.15);
    border-top: 1px solid rgba(137, 207, 241, 0.1);
    border-bottom: 1px solid rgba(137, 207, 241, 0.1);
}

.intake-notice p {
    font-size: 1.1rem;
    color: var(--cream);
}

.intake-notice a {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.intake-notice a:hover {
    color: var(--gold-light);
}

/* ============================================
   SPEAKER PAGE
   ============================================ */

.speaker-intro {
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.speaker-intro p {
    font-size: 1.2rem;
    color: rgba(243, 239, 234, 0.8);
    line-height: 1.9;
}

.speaker-gallery {
    background: transparent;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    padding: 0 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.speaker-gallery img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
    border: 1px solid rgba(137, 207, 241, 0.1);
}

.speaker-gallery img:hover {
    filter: grayscale(0%);
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(137, 207, 241, 0.4);
}

.speaker-topics {
    padding: 6rem 4rem;
    background: var(--dark-primary);
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.topics-column h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(137, 207, 241, 0.2);
}

.topics-column ul {
    list-style: none;
}

.topics-column ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(243, 239, 234, 0.75);
    border-bottom: 1px solid rgba(137, 207, 241, 0.05);
    transition: all 0.3s ease;
}

.topics-column ul li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--gold);
    transition: all 0.3s ease;
}

.topics-column ul li:hover {
    padding-left: 2.5rem;
    color: rgba(243, 239, 234, 0.95);
}

.topics-column ul li:hover::before {
    content: '●';
}

.client-logos {
    padding: 4rem;
    background: var(--darkest);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-logos-grid{align-items:center;}

/* Trusted-by logos should look like real brand marks (no forced over-brightening) */
.trusted-logos-grid img{
    filter: grayscale(100%);
    opacity: 0.75;
    max-height: 64px;
    max-width: 200px;
    object-fit: contain;
}

.trusted-logos-grid img:hover{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

.logos-grid img {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(2);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   ABOUT PAGE EXTENDED
   ============================================ */

.bio-section {
    padding: 6rem 4rem;
    background: var(--darkest);
}

.bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.bio-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin: 3rem 0 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.bio-content p {
    color: rgba(243, 239, 234, 0.75);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    animation: fadeIn 0.8s ease-out;
}

.quote-block {
    padding: 3rem 4rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-primary) 100%);
    border-left: 3px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
    animation: slideInRight 1s ease-out;
}

.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.image-row img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid rgba(137, 207, 241, 0.1);
    transition: all 0.5s ease;
}

.image-row img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(137, 207, 241, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 12rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 50%, var(--dark-teal) 0%, transparent 60%),
        var(--darkest);
    position: relative;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.3;
    animation: fadeUp 0.8s ease-out;
}

.cta-section h2 em {
    color: var(--gold);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 4rem;
    background: var(--darkest);
    border-top: 1px solid rgba(137, 207, 241, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--cream);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-5px) rotate(5deg);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(243, 239, 234, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .speaker-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }

    .approach-360-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero,
    .page-hero {
        padding: 6rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .offerings-grid,
    .downloads-grid,
    .books-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .approach-360-grid {
        grid-template-columns: 1fr;
    }
    
    .about,
    .offerings,
    .downloads,
    .cta-section,
    .content-section,
    .why-work-with-me {
        padding: 6rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .speaker-gallery {
        grid-template-columns: 1fr;
    }
    
    .image-row {
        grid-template-columns: 1fr;
    }
}


/* ====== EXTRA PAGE STYLES (merged from inner pages) ====== */
.about-intro-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-intro-image{
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(137, 207, 241, 0.2);
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-intro-image img:hover {
    filter: grayscale(0%);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* About intro: lock text block to image proportions */
.about-intro-grid{
    align-items: stretch;
}

.about-intro-image{
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
}

.about-intro-image img{
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0;
}

.about-intro-content p{
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-intro-content p:last-child{
    margin-bottom: 0;
}

@media (max-width: 900px){
    .about-intro-grid{
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .about-intro-image{
        aspect-ratio: 16 / 10;
        border-radius: 20px;
    }
    .about-intro-content{
        padding: 0;
    }
}

.about-intro-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--cream);
}

.about-intro-content h2 span {
    color: var(--gold);
}

.credential-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--medium-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.3);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* Professional Background Section */
.background-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.background-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.background-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Compact variant for About page so the tiles feel lighter and more side-by-side */
.background-cards-grid--compact {
    max-width: 1100px;
    gap: 1.25rem;
}


.background-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    transition: all 0.4s ease;
}


.background-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(137, 207, 241, 0.15);
}

.background-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(137, 207, 241, 0.4);
}


.background-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.background-card p {
    color: rgba(240, 246, 250, 0.8);
    line-height: 1.8;
}

/* How I Work Section */
.how-i-work-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.how-i-work-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.how-i-work-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.how-i-work-content h2 span {
    color: var(--gold);
}

.value-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-item {
    padding: 1.5rem;
    background: rgba(0, 58, 107, 0.5);
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(0, 58, 107, 0.8);
    transform: translateX(5px);
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: rgba(240, 246, 250, 0.7);
    font-size: 0.95rem;
}

/* Beyond Work Section */
.beyond-work-section {
    padding: 8rem 4rem;
    background: var(--darkest);
    text-align: center;
}

.core-belief {
    max-width: 900px;
    margin: 2.25rem auto 0;
    padding: 4rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
}

.core-belief p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.9);
    font-style: italic;
}

/* ============================================
   COACH PAGE STYLES
   ============================================ */

.coaching-intro {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.coaching-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.85);
}

.coaching-statement {
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: rgba(0, 58, 107, 0.5);
    border-left: 4px solid var(--gold);
    display: inline-block;
    text-align: left;
}

.coaching-statement p {
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Trifecta Section */
.trifecta-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.trifecta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trifecta-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(180deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.trifecta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.trifecta-card:hover::before {
    transform: scaleX(1);
}

.trifecta-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(137, 207, 241, 0.2);
}

.trifecta-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 200;
    color: rgba(137, 207, 241, 0.2);
    margin-bottom: 1rem;
}

.trifecta-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.trifecta-card .years {
    font-size: 0.9rem;
    color: rgba(240, 246, 250, 0.6);
    margin-bottom: 1.5rem;
}

.trifecta-card p {
    color: rgba(240, 246, 250, 0.8);
    line-height: 1.8;
}

/* 360 Approach Section */
.approach-360-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.approach-360-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.approach-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 1.25rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
    box-shadow: 0 0 0 rgba(137, 207, 241, 0);
}

.approach-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.approach-item {
    padding: 1.6rem 1.4rem;
    background: rgba(0, 58, 107, 0.4);
    border: 1px solid rgba(137, 207, 241, 0.1);
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(0, 58, 107, 0.6);
    border-color: rgba(137, 207, 241, 0.3);
}

.approach-item:hover .approach-icon {
    transform: rotate(360deg) scale(1.08);
    border-color: var(--gold-light);
    box-shadow: 0 0 18px rgba(137, 207, 241, 0.35);
}

.approach-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: rgba(240, 246, 250, 0.7);
    font-size: 0.95rem;
}

/* Coaching Clients Grid */
.coaching-clients-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.coaching-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.coaching-client-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.coaching-client-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.coaching-client-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.coaching-client-card p {
    color: rgba(240, 246, 250, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* What to Expect Grid */
.expect-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 58, 107, 0.3);
    transition: all 0.3s ease;
}

.expect-item:hover {
    background: rgba(0, 58, 107, 0.5);
}

.expect-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--darkest);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.expect-item:hover .expect-icon {
    transform: rotate(360deg);
}

.expect-item p {
    color: rgba(240, 246, 250, 0.85);
}

/* ============================================
   SPEAKER PAGE STYLES
   ============================================ */

.speaker-overview {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.speaker-overview p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.85);
}

/* Speaker Reel */
.speaker-reel-section {
    padding: 6rem 4rem;
    background: var(--darkest);
    text-align: center;
}

.speaker-reel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50.625%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(137, 207, 241, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.speaker-reel-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Signature Talks Grid */
.signature-talks-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
}

.signature-talks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.talk-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    transition: all 0.5s ease;
    position: relative;
}

.talk-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.talk-card:hover::after {
    transform: scaleX(1);
}

.talk-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(137, 207, 241, 0.15);
}

.talk-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.talk-card .subtitle {
    font-size: 0.9rem;
    color: rgba(240, 246, 250, 0.6);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.talk-card p {
    color: rgba(240, 246, 250, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Speaker Gallery */
.speaker-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.speaker-gallery img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.speaker-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Audiences Grid */
.audiences-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.audience-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.audience-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.audience-card p {
    color: rgba(240, 246, 250, 0.75);
    font-size: 0.9rem;
}

/* Selected Engagements */
.engagements-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.engagements-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.engagement-item {
    padding: 1.5rem;
    background: rgba(0, 58, 107, 0.4);
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;

    padding-left: 2ch;
}

.engagement-item:hover {
    background: rgba(0, 58, 107, 0.6);
    transform: translateX(5px);
}

.engagement-item p {
    color: rgba(240, 246, 250, 0.85);
    font-size: 0.95rem;
}

/* Speaking Style */
.speaking-style-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.style-qualities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.style-quality {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.style-quality:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Logos Section (moved from index) */
.logos-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.logos-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(240, 246, 250, 0.7);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-logos-grid{align-items:center;}

.logos-grid img {
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    opacity: 1;
}

/* ============================================
   AUTHOR/BOOKS PAGE STYLES
   ============================================ */

.author-intro-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.author-intro-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.85);
}

/* Themes and Books */
.themes-books-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.themes-books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.themes-list {
    list-style: none;
}

.themes-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(240, 246, 250, 0.85);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(137, 207, 241, 0.1);
}

.themes-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.featured-book-preview {
    text-align: center;
}

.featured-book-preview img {
    max-width: 280px;
    border: 1px solid rgba(137, 207, 241, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.featured-book-preview img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Frameworks Section */
.frameworks-section {
    /* Slightly tighter bottom spacing to reduce the gap before the next section on the Author page */
    padding: 8rem 4rem 4.5rem;
    background: var(--dark-primary);
}

/* Author (Books) page – tighten transition between "Six Levels of Awareness" and "Who My Books Are For" */
.audience-section {
    padding-top: 5.5rem;
}

/* Author (Books) page – audience book grids */
.audience-books-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.audience-book-section {
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(7, 21, 34, 0.85) 0%, rgba(10, 36, 57, 0.75) 100%);
    border: 1px solid rgba(137, 207, 241, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.audience-book-section h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
}

.audience-book-section .audience-description,
.audience-book-section .audience-note {
    color: rgba(240, 246, 250, 0.78);
}

/* Extra breathing room between the section copy and the book tiles */
.audience-book-section .audience-books {
    margin-top: 2.25rem;
}

.audience-books {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.audience-books .mini-book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.audience-books .mini-book-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.audience-books .mini-book-card img {
    width: 100%;
    max-width: 170px;
    aspect-ratio: 3 / 4;
    object-fit: contain;

    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(137, 207, 241, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    margin-bottom: 1rem;
}

.audience-books .mini-book-card span {
    display: block;
}

.audience-books .mini-book-card span:not(.book-award):not(.book-status) {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.book-award,
.book-status {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 246, 250, 0.8);
    background: rgba(137, 207, 241, 0.14);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(137, 207, 241, 0.18);
}

.mini-book-card.coming-soon {
    opacity: 0.9;
}

/* Center the audiobook section content */
.centered-audio {
    text-align: center;
}

.centered-audio audio {
    display: block;
    width: min(760px, 100%);
    margin: 1.75rem auto 0;
}

@media (max-width: 980px) {
    .audience-books-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .audience-books {
        grid-template-columns: 1fr;
    }
    .audience-book-section {
        padding: 2rem 1.5rem;
    }
}

.frameworks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.framework-card {
    padding: 3rem;
    background: linear-gradient(135deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    transition: all 0.4s ease;
}

.framework-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(137, 207, 241, 0.1);
}

.framework-card img {
    width: 150px;
    border: 1px solid rgba(137, 207, 241, 0.2);
}

.framework-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.framework-steps {
    list-style: none;
    margin-top: 1.5rem;
}

.framework-steps li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(240, 246, 250, 0.8);
}

.framework-steps li span {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Audience Books Grid */
.audience-books-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.audience-books-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.audience-category {
    margin-bottom: 4rem;
}

.audience-category:last-child {
    margin-bottom: 0;
}

.audience-category h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(137, 207, 241, 0.2);
}

.mini-books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mini-book-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.mini-book-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.mini-book-card img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.mini-book-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.mini-book-info p {
    color: rgba(240, 246, 250, 0.7);
    font-size: 0.9rem;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(137, 207, 241, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Audiobook Feature */
.audiobook-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.audiobook-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
}

.audiobook-container h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
}

.audiobook-container audio {
    width: 100%;
    margin-top: 1rem;
}

/* Beyond Page Section */
.beyond-page-section {
    padding: 6rem 4rem;
    background: var(--darkest);
    text-align: center;
}

.beyond-page-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.85);
}

/* Free Resources Grid */
.resources-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.resource-card {
    padding: 2rem;
    background: linear-gradient(180deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.resource-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.resource-card p {
    color: rgba(240, 246, 250, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.resource-card .download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.resource-card .download-btn:hover {
    background: var(--gold);
    color: var(--darkest);
}

/* ============================================
   WORK WITH ME PAGE STYLES
   ============================================ */

.work-intro-section {
    padding: 6rem 4rem;
    background: var(--dark-primary);
    text-align: center;
}

.work-intro-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.85);
}

/* Who I Work With - Work Fit */
.work-fit-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.work-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.work-fit-card {
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
    transition: all 0.4s ease;
}

.work-fit-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(137, 207, 241, 0.1);
}

.work-fit-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.work-fit-card ul {
    list-style: none;
}

.work-fit-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(240, 246, 250, 0.85);
    border-bottom: 1px solid rgba(137, 207, 241, 0.1);
}

.work-fit-card ul li:last-child {
    border-bottom: none;
}

.work-fit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Support Grid */
.support-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.support-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(180deg, var(--darkest) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    transition: all 0.5s ease;
    position: relative;
}

.support-card.specialty::before {
    content: 'Core Specialty';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--darkest);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(137, 207, 241, 0.15);
}

.support-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 200;
    color: rgba(137, 207, 241, 0.25);
    margin-bottom: 1rem;
}

.support-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.support-card p {
    color: rgba(240, 246, 250, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.support-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(240, 246, 250, 0.75);
    font-size: 0.95rem;
}

.support-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Approach Qualities */
.approach-section {
    padding: 8rem 4rem;
    background: var(--darkest);
}

.approach-qualities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.approach-quality {
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.approach-quality:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.approach-quality h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.approach-quality p {
    color: rgba(240, 246, 250, 0.7);
    font-size: 0.9rem;
}

/* Engagements Structure */
.engagements-structure-section {
    padding: 8rem 4rem;
    background: var(--dark-primary);
}

.engagements-structure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.engagement-type{
    border-radius:22px;
    padding:1.35rem;
    background:rgba(0, 58, 107, 0.38);
    border:1px solid rgba(137, 207, 241, 0.12);
    box-shadow:0 18px 40px rgba(0,0,0,0.28);
    transition:all 0.3s ease;
}

.engagement-type:hover {
    background: rgba(0, 58, 107, 0.6);
    border-color: rgba(137, 207, 241, 0.3);
}

.engagement-type h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.engagement-type p {
    color: rgba(240, 246, 250, 0.75);
    font-size: 0.9rem;
}

/* Trusted Partner */
.trusted-partner-section {
    padding: 6rem 4rem;
    background: var(--darkest);
    text-align: center;
}

.trusted-partner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-teal) 100%);
    border: 1px solid rgba(137, 207, 241, 0.2);
}

.trusted-partner-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(240, 246, 250, 0.9);
}



/* ============================================
   MOBILE NAV (JS TOGGLE)
   ============================================ */
@media (max-width: 768px) {
  nav.open .nav-links{
    display:flex;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(78vw, 380px);
    flex-direction:column;
    gap:1.5rem;
    padding:6rem 2rem 2rem;
    background: rgba(0, 58, 107, 0.98);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(137, 207, 241, 0.12);
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
    z-index: 200;
  }
  nav.open::after{
    content:'';
    position:fixed;
    inset:0;
    background: rgba(0,0,0,0.45);
    z-index: 150;
  }
}


/* Speaker page refinements */
.signature-talks-frame {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.20);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    padding: 1.5rem;
    margin: 1.5rem auto 0;
    max-width: 1100px;
}

.signature-talk-card {
    background: rgba(15, 15, 15, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.signature-talk-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.signature-talk-card .talk-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.9rem;
}

.speaker-video-note {
    margin-top: 0.8rem;
}

.speaker-video-note a {
    color: rgba(243, 239, 234, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}


.org-logo{
    width:100%;
    max-width:170px;
    height:60px;
    object-fit:contain;
    opacity:0.92;
    filter:drop-shadow(0 10px 18px rgba(0,0,0,0.35));
    transition:transform 0.35s ease, opacity 0.35s ease;
}

.org-logo:hover{
    transform:translateY(-2px);
    opacity:1;
}


.engagements-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:1.25rem;
    margin-top:2rem;
}


.engagement-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(137, 207, 241, 0.12);
    border:1px solid rgba(137, 207, 241, 0.15);
    transition:transform 0.6s ease;
}

.engagement-type:hover .engagement-icon{
    transform:rotate(360deg);
}

.engagement-icon svg{
    width:26px;
    height:26px;
}


/* --- Client Round 2 Refinements --- */

/* About: show 3-up cards on desktop */
.background-cards-grid--compact{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px){
  .background-cards-grid--compact{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .background-cards-grid--compact{ grid-template-columns: 1fr; }
}

/* Improve sentence breathing room in key narrative blocks */
.how-i-work-content p{ margin: 0 0 1.15rem; }
.how-i-work-content .lead-text{ margin-bottom: 1.1rem; }

/* Coach: tighten bullet spacing and align */
.trifecta-understands{ margin-top: 1rem; }
.trifecta-understands ul{ margin: .6rem 0 0; padding-left: 1.35rem; }
.trifecta-understands li{ margin-bottom: .35rem; }

/* Coach: add punctuation clarity in approach cards */
.approach-item p{ margin-top: .35rem; }

/* Speaker: keep the video note on a single line when possible */
.speaker-video-note a{ display:inline; white-space:nowrap; }
.speaker-video-note{ text-align:center; }

/* Speaker: slightly more breathing room between gallery items */
.speaker-gallery-grid{ gap: 1.05rem; }

/* Signature talks: add clean spacing */
.signature-talk-card h3{ margin-bottom: .65rem; }
.signature-talk-card p{ margin-top: .65rem; }

/* Author: center frameworks lists without losing readability */
.framework-content{ text-align:center; }
.framework-steps{ display:inline-block; text-align:left; margin: 1rem auto 0; padding-left: 1.1rem; }

/* Work With Me: centered note */
.center-note{ text-align:center; margin-top: 1.6rem; }

/* Coming soon cards */
.coming-soon-section .mini-book-card.coming-soon{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.coming-soon-section .book-badge{
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-size: .75rem;
  margin-bottom: .6rem;
}


.logos-grid + .engagement-item{margin-top: 1.25rem;}

/* Speaker page - Speaking Style boxed panel */
.speaking-style-box{
    background: var(--dark-primary);
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
}
.speaking-style-section{
    background: var(--darkest);
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}
/* Coach page: photo + statement split */
.coach-hero-split{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.25rem;
}
.coach-hero-photo img{
  width:100%;
  height:auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
@media (max-width: 900px){
  .coach-hero-split{grid-template-columns:1fr; gap:1.5rem;}
}

.speaker-reel-subtitle{white-space:nowrap;}

/* Speaker page: keep reel subtitle on one line for wide screens */
.speaker-reel-subtitle{
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 700px){
  .speaker-reel-subtitle{white-space: normal;}
}
/* Speaker page: Selected Speaking Engagements (logos + 2x4 text grid) */
.engagement-text-grid{
  max-width: 1100px;
  margin: 1.75rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 2.25rem;
}
.engagement-text-item{
  padding-left: 1.15rem;
  border-left: 2px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.35;
}
@media (max-width: 980px){
  .engagement-text-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 520px){
  .engagement-text-grid{grid-template-columns: 1fr;}
}


/* Speaker page spacing refinements */
.speaker-engagement-logos {
  margin-top: 1.25rem !important;   /* tighter title -> logos */
  margin-bottom: 4rem !important;   /* more space logos -> org grid */
}

.speaker-engagement-orgs {
  margin-top: 4rem !important;
}



/* Final spacing match: logos -> org grid */
.engagement-text-grid{
  margin-top: 3rem !important;
}


/* --- Author page readability refinements --- */
.author-intro-content.sentence-spaced .lead-text{
  margin-bottom: 1.1rem;
}
.author-intro-content.sentence-spaced .lead-text:last-child{
  margin-bottom: 0;
}

/* Center the theme list as a unit (without centering individual text awkwardly) */
.themes-list.centered-themes{
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

/* Coming soon cards: tighter hierarchy */
.coming-soon-section .mini-book-card.coming-soon h4{
  margin: 0.35rem 0 0.35rem;
  font-size: 1.02rem;
  line-height: 1.25;
  text-align: center;
}
.coming-soon-section .mini-book-card.coming-soon .coming-soon-desc{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.9;
  text-align: center;
}

/* Book badges */
.book-badge.available-now{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
}


/* --- Work With Me refinements --- */
.focal-line{
  text-align: center;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}
.sentence-break{
  display: block;
  height: 0.55em; /* "half-line" feel */
  content: "";
}


/* --- Author page: "What I Write About" layout refinement --- */
.themes-and-books{
  max-width: 1200px;
  margin: 3.25rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: center;
}
.themes-list{
  width: 100%;
}
.themes-list.centered-themes{
  max-width: 640px;
  margin: 0 auto;
}
.theme-item{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(137, 207, 241, 0.10);
  color: rgba(240, 246, 250, 0.88);
  font-size: 1.05rem;
  line-height: 1.35;
}
.theme-item:last-child{
  border-bottom: none;
}
.theme-icon{
  color: var(--gold);
  flex: 0 0 auto;
  line-height: 1.2;
  transform: translateY(0.12rem);
}

.featured-book-preview{
  display: flex;
  justify-content: center;
}
.book-preview-card{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.book-preview-card img{
  max-width: 320px;
}
.book-preview-card .book-preview-caption{
  margin-top: 0.9rem;
  font-size: 0.95rem;
  opacity: 0.85;
  text-align: center;
}

/* Responsive: stack cleanly on smaller screens */
@media (max-width: 980px){
  .themes-and-books{
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }
  .themes-list.centered-themes{
    max-width: 760px;
  }
  .theme-item{
    justify-content: center;
    text-align: left;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Author page: Coming Soon centering refinement --- */
.coming-soon-section .audience-books{
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.coming-soon-section .mini-book-card.coming-soon{
  width: 100%;
  max-width: 420px;
}

@media (max-width: 760px){
  .coming-soon-section .audience-books{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* Fix malformed selector for Available Now badge */
.book-badge.available-now,
.book-status.available-now{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
}

.bestseller{margin-bottom:2rem;}
.abstract-ideas{margin-top:0;margin-bottom:1.2rem;text-align:center;white-space:nowrap;max-width:100%;margin-left:auto;margin-right:auto;}


.section-header.section-header--compact + .engagement-text-grid{
  margin-top: 0;
}


/* Work With Me page handoff divider */
.section-handoff{
  max-width: 1100px;
  margin: 3rem auto 1.5rem;
  padding: 0 2rem;
  text-align: center;
}
.thin-divider{
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 0 auto 1.25rem;
  max-width: 760px;
}
.handoff-title{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
