        /* MagMin Core Styles */
        :root { --navy: #14213d; --gold: #f6c453; --cream: #fffdf8; --stone: #fafaf9; --border: #e7dcc8; }
        body { background: var(--cream); color: #475569; font-family: 'Inter', sans-serif; margin: 0; line-height: 1.6; }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); }

/* Wordmark Styling */
.wordmark {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    text-decoration: none;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.ext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Dashboard Grid */
.dashboard-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 3rem; 
}
@media (min-width: 768px) { 
    .dashboard-grid { grid-template-columns: 2fr 1fr; } 
}

.status-card { 
    background: var(--stone); 
    padding: 2rem; 
    border: 1px solid var(--border); 
    position: sticky; 
    top: 6rem; 
}


/* Navigation */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--border);
    height: 4rem;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 80rem; /* 7xl equivalent */
    margin: 0 auto;
    padding: 0 1.25rem;
}

.nav-links {
    display: none; /* Hidden by default */
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--slate-900); }

.nav-cta {
    background: var(--gold);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.nav-cta:hover { background: #b45309; }

        
        /* Buttons */
        .btn { padding: 0.75rem 1.5rem; border-radius: 2px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; }
        .btn-gold { background: #d97706; color: white; }
        .btn-navy { background: var(--navy); color: white; }
        
        /* Program Cards */
        .program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
        .program-card { background: white; border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
        
        /* Utilities */
        .hidden { display: none; }
        .text-gold { color: #d97706; }
        .mt-auto { margin-top: auto; }
        .pt-4 { padding-top: 1rem; border-top: 1px solid var(--border); }
        
        @keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Styles */
.hero-wrapper {
    position: relative;
    background-color: var(--navy);
    min-height: 88vh; /* Keeps your original height */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
    overflow: hidden;
}

/* Fix: Hero content needs to inherit the serif font */
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.08;
    color: white;
    max-width: 48rem;
    margin-bottom: 1.25rem;
    animation: fade-up 0.7s ease both;
    animation-delay: 0.1s;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 36rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}


.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.2));
}

.hero-tint {
    position: absolute;
    inset: 0;
    background: rgba(146, 64, 14, 0.1); /* Amber tint */
}
/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 5rem 2rem; /* pt-28 pb-20 */
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
}


/* Responsive headline sizes */
@media (min-width: 768px) { .hero-headline { font-size: 5rem; } }


/* CTA Group */
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; animation: fade-up 0.7s 0.3s ease both; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.btn-cta-primary { 
    background: var(--gold); color: white; padding: 1rem 2rem; border-radius: 2px; 
    font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.75rem;
    transition: background 0.2s; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-cta-primary:hover { background: #b45309; }

.btn-cta-secondary { 
    color: #cbd5e1; text-decoration: none; border-bottom: 1px solid #64748b; 
    font-weight: 500; font-size: 0.875rem; transition: 0.2s; 
}
.btn-cta-secondary:hover { color: white; border-color: white; }

/* Mission Band */
.mission-band { background: var(--stone); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.mission-content { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .mission-content { flex-direction: row; justify-content: space-between; align-items: center; } }

.mission-text { 
    font-family: 'Playfair Display', serif; /* Explicit Serif override */
    font-size: 1.5rem; 
    font-style: italic; 
    color: var(--navy); /* Changed from --slate to match your v5 look */
    max-width: 48rem; 
    margin: 0; 
}

.mission-meta { display: flex; flex-direction: column; gap: 0.25rem; }

/* Hosts Section */
.hosts-section { background: white; padding: 6rem 0; }

.hosts-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4rem; 
    align-items: center; 
}
@media (min-width: 1024px) { 
    .hosts-grid { grid-template-columns: 1fr 1fr; } 
}

/* Gallery Grid */
.gallery-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}

.gallery-img { 
    width: 100%; 
    height: 16rem; 
    object-fit: cover; 
    border-radius: 4px; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
}

/* Specific offsets for the "magazine" look */
.gallery-img:nth-child(2) { margin-top: 2rem; }
.gallery-img:nth-child(3) { margin-top: -2rem; }

/* Narrative */
.narrative-col h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.narrative-col p { font-size: 1.125rem; line-height: 1.7; color: var(--slate); margin-bottom: 1.5rem; }

/* Programs Section */
.programs-section { background: white; padding: 2.5rem 0 7rem; }

.section-header { max-width: 42rem; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .section-header h2 { font-size: 3rem; } }
.section-header p { font-size: 1.125rem; line-height: 1.7; color: #64748b; }

/* Programs Grid */
.programs-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
}
@media (min-width: 640px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }

/* Program Card */
.program-card { 
    background: var(--stone); 
    border: 1px solid var(--border); 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    gap: 1.25rem; 
    border-radius: 2px;
    transition: all 0.3s;
}
.program-card:hover { 
    border-color: #fbbf24; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
}

.card-icon { 
    width: 2.5rem; 
    height: 2.5rem; 
    border-radius: 2px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-shrink: 0;
}
/* Icon color variants */
.icon-amber { background: #fef3c7; color: #b45309; }
.icon-violet { background: #ede9fe; color: #6d28d9; }
.icon-sky { background: #e0f2fe; color: #0369a1; }
.icon-emerald { background: #d1fae5; color: #047857; }
.icon-rose { background: #ffe4e6; color: #be123c; }
.icon-orange { background: #ffedd5; color: #c2410c; }

.card-body { display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.card-index { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.card-title { font-size: 1.25rem; line-height: 1.3; color: var(--navy); transition: color 0.2s; }
.program-card:hover .card-title { color: #b45309; }
.card-desc { font-size: 0.875rem; line-height: 1.6; color: #64748b; }

/* Card Button Row */
.card-actions { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-top: auto; 
    padding-top: 1rem; 
    border-top: 1px solid var(--border); 
}
.learn-more-btn { 
    font-size: 0.75rem; 
    font-weight: 600; 
    color: #b45309; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    background: none; 
    border: none; 
    cursor: pointer;
    transition: color 0.2s;
}
.learn-more-btn:hover { color: #78350f; text-decoration: underline; }
.btn-enroll { 
    background: var(--navy); 
    color: white; 
    padding: 0.5rem 1rem; 
    font-size: 0.75rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    text-decoration: none;
    transition: background 0.2s;
}
.btn-enroll:hover { background: var(--gold); }

/* Card Details */
.card-details { 
    font-size: 0.875rem; 
    color: var(--slate); 
    font-style: italic; 
    background: white; 
    padding: 1rem; 
    border-radius: 2px; 
    border: 1px solid var(--border); 
}

/* CTA Band */
.cta-band { 
    margin-top: 4rem; 
    background: var(--navy); 
    border-radius: 2px; 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}
@media (min-width: 640px) { 
    .cta-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem; } 
}

.cta-band h3 { 
    font-family: 'Playfair Display', serif; /* Force Serif */
    color: white; 
    font-size: 1.75rem; 
    margin: 0 0 0.5rem 0; 
}

.cta-band p { 
    font-family: 'Inter', sans-serif; /* Explicit Sans */
    color: #cbd5e1; /* Using light slate for contrast */
    font-size: 0.95rem;
    margin: 0; 
}

.btn-portal { 
    background: var(--gold); 
    color: white; 
    padding: 1rem 2rem; 
    border-radius: 2px; 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-decoration: none; 
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-portal:hover { background: #b45309; }

/* Community Break */
.image-break { background: var(--stone); overflow: hidden; padding: 4rem 0; }
.break-inner { position: relative; border-radius: 2px; overflow: hidden; }
.break-img { width: 100%; height: 14rem; object-fit: cover; }
@media (min-width: 640px) { .break-img { height: 18rem; } }
@media (min-width: 768px) { .break-img { height: 24rem; } }

.break-overlay { 
    position: absolute; inset: 0; 
    background: linear-gradient(to right, rgba(20, 33, 61, 0.7), rgba(20, 33, 61, 0.3), transparent); 
    display: flex; align-items: center; padding: 0 3rem; 
}

.break-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    margin-bottom: 0.75rem;
    max-width: 28rem;
}

.break-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* Partnerships */
.partnerships-section { background: white; padding: 2rem 0 5rem; }
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: 1fr 1fr 1fr; } }

.partner-card { 
    background: var(--stone); border: 1px solid var(--border); padding: 2rem; 
    display: flex; flex-direction: column; gap: 1rem; border-radius: 2px; 
}
.partner-card.dashed { border-style: dashed; opacity: 0.6; }
.partner-icon { 
    width: 2.25rem; height: 2.25rem; border-radius: 2px; 
    display: flex; align-items: center; justify-content: center; 
}
/* Portal CTA */
.portal-cta { background: var(--stone); border-top: 1px solid var(--border); padding: 5rem 0; text-align: center; }
.portal-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.portal-icon { width: 3.5rem; height: 3.5rem; background: #fef3c7; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }

/* Footer */
.site-footer { background: #0b1324; color: #94a3b8; padding: 4rem 0; border-top: 1px solid #1e293b; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-heading { color: white; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 2rem; text-align: center; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; }

/* BASECAMP Layout Containers */
.pillar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* BASECAMP Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* BASECAMP Updated Outlines for Injection Targets */
#pillar-body, 
#pillar-decision-gate,
#sig-corner {
    border: 2px dashed #e7dcc8;
    border-radius: 15px;
    padding: 2rem;
    background-color: #fffdf8;
    margin-bottom: 2rem;
}

/* BASECAMP Label for development mode (optional) */
#pillar-body::before, 
#pillar-decision-gate::before,
#sig-corner::before {
    content: attr(id);
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
