/* ===== CSS Variables ===== */
:root {
    --navy-deep: #2B4257;
    --gold: #C9A227;
    --cream: #F0EDE6;
    --light-blue: #D8E0E8;
    --slate-gray: #5A6A7A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-deep);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--slate-gray);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--navy-deep);
}

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: var(--navy-deep);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy-deep);
}

/* ===== Full-Width Hero with Overlay (Homepage) ===== */
.hero-overlay {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    margin-top: 70px;
    padding: 4rem;
    padding-left: 8rem;
}

.hero-overlay-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-overlay h1 {
    font-size: 2.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-overlay h2 {
    font-size: 1.75rem;
    color: var(--navy-deep);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-overlay p {
    color: var(--slate-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hero-overlay .highlight {
    color: var(--gold);
    font-weight: 600;
}

.hero-overlay .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-top: 1.5rem;
}

.hero-overlay .btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.hero-overlay .btn-primary:hover {
    background: var(--navy-deep);
    color: var(--white);
}

/* Large Section Titles */
.section-title-large {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-title-brand {
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.section-navy .section-title-large {
    color: var(--white);
}

.section-cream .section-title-large,
.section-white .section-title-large {
    color: var(--navy-deep);
}

/* Section Divider */
.section-divider {
    border-top: 3px solid var(--gold);
    width: 80px;
    margin: 0 auto 2rem;
}

/* White spacer between sections */
.section-spacer {
    height: 60px;
    background: var(--white);
}

/* ===== Inner Page Hero ===== */
.hero-inner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1a2d3d 100%);
    padding: 10rem 2rem 5rem;
    text-align: center;
}

.hero-inner h1 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero-inner h1 .gold {
    color: var(--gold);
}

.hero-inner .hero-subtitle {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 2rem;
}

.section-navy {
    background: var(--navy-deep);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.section-navy .section-title {
    color: var(--white);
}

.section-subtitle {
    color: var(--slate-gray);
    max-width: 700px;
    font-size: 1.1rem;
}

.section-navy .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--navy-deep);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.9rem 1.9rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.9rem 1.9rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-deep);
}

/* ===== SHIFT Grid ===== */
.shift-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.shift-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.shift-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.shift-word {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--white);
}

.shift-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.audience-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.audience-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.audience-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Clean Card Style (no icons) */
.audience-card-clean {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 2px solid var(--navy-deep);
    transition: all 0.3s ease;
    text-align: center;
}

.audience-card-clean:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    border-color: var(--gold);
}

.audience-card-clean h3 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.audience-card-clean p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card h3 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Media Item with Thumbnail */
.media-item-with-thumb {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.media-thumb {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.media-item-content {
    flex: 1;
}

.media-item-content h4 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.media-item-content .media-outlet {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-item-content p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.media-item-content a {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Testimonials Carousel ===== */
.testimonials-section {
    background: var(--navy-deep);
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-title {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
}

/* ===== Media Section ===== */
.media-section {
    background: var(--light-blue);
    padding: 3rem 2rem;
    text-align: center;
}

.media-section p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.media-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
    color: var(--gold);
}

.media-logo-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-logo-link:hover .media-logo {
    opacity: 1;
    color: var(--gold);
}

/* ===== Two Column Layout ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.two-col-image {
    position: relative;
}

.two-col-image img {
    border-radius: 8px;
    width: 100%;
}

.two-col-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 8px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

/* ===== Talks ===== */
.talk {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.talk h3 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.talk-audience {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Speaking Engagements ===== */
.engagements-list {
    columns: 2;
    column-gap: 3rem;
    margin-top: 2rem;
}

.engagement-item {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 0.75rem;
    break-inside: avoid;
}

.engagement-item strong {
    color: var(--navy-deep);
}

/* ===== Workshop Formats ===== */
.workshop-format {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--light-blue);
}

.workshop-format strong {
    color: var(--navy-deep);
}

.workshop-format span {
    color: var(--slate-gray);
    font-size: 0.9rem;
}

/* ===== Media Page Grid ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.media-item h4 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.media-item .media-outlet {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.media-item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.media-item a {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Tier/Program Cards ===== */
.tier {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-blue);
}

.tier h3 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.tier-best {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== Feature List ===== */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--slate-gray);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== Bullet List ===== */
.bullet-list {
    list-style: none;
    padding-left: 0;
}

.bullet-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--slate-gray);
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== Book Page ===== */
.book-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.book-cover {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-option {
    margin-bottom: 2rem;
}

.contact-option h3 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-option p {
    font-size: 0.95rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info h3 {
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-deep);
    font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1a2d3d 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.footer-brand .logo {
    color: var(--white);
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-column h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    
    .hero-fullwidth h1 {
        font-size: 2.75rem;
    }
    
    .shift-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shift-grid .shift-item:nth-child(4),
    .shift-grid .shift-item:nth-child(5) {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .engagements-list {
        columns: 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        order: 3;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        border-bottom: 1px solid var(--light-blue);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active {
        color: var(--gold);
    }
    
    .hero-overlay {
        min-height: auto;
        padding: 2rem 1rem;
        padding-left: 1rem;
        background-position: center 20%;
    }
    
    .hero-overlay-content {
        padding: 2rem;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay h2 {
        font-size: 1.35rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .section-title-brand {
        font-size: 1.75rem;
    }
    
    .hero-inner {
        padding: 8rem 1.5rem 4rem;
    }
    
    .shift-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-col-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
}
