/* ============================================
   E5 ENCLAVE — PILLAR LANDING PAGE STYLES
   Extends main style.css design system
   ============================================ */

/* Pillar Hero */
.pillar-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
    padding-top: 80px;
}

.pillar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pillar-hero.env::before {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(34, 139, 34, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.pillar-hero.econ::before {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(139, 26, 26, 0.06) 0%, transparent 60%);
}

.pillar-hero.edu::before {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(70, 130, 180, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.pillar-hero.equal::before {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(139, 26, 26, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.pillar-hero.emancipated::before {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 26, 26, 0.06) 0%, transparent 50%);
}

.pillar-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar-number sub {
    font-size: 2rem;
    color: var(--red-light);
}

.pillar-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pillar-hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.pillar-breadcrumb {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.pillar-breadcrumb a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.pillar-breadcrumb a:hover {
    color: var(--gold);
}

.pillar-breadcrumb span {
    font-size: 0.7rem;
    color: var(--gray-dark);
    margin: 0 0.5rem;
}

/* Content Sections */
.pillar-section {
    padding: 6rem 0;
}

.pillar-section:nth-child(even) {
    background: var(--black-light);
}

.pillar-section:nth-child(odd) {
    background: var(--black);
}

.pillar-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.pillar-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pillar-section p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.pillar-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pillar-section li {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.pillar-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--gold);
}

/* Initiative Cards */
.initiative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.initiative-card {
    background: var(--black);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 2rem;
    transition: all 0.3s ease;
}

.pillar-section:nth-child(odd) .initiative-card {
    background: var(--black-light);
}

.initiative-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-3px);
}

.initiative-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.initiative-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Quote Block */
.pillar-quote {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: rgba(201, 168, 76, 0.03);
}

.pillar-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0;
}

/* Stats Row */
.pillar-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    flex-wrap: wrap;
}

.pillar-stat {
    display: flex;
    flex-direction: column;
}

.pillar-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.pillar-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.3rem;
}

/* CTA Section */
.pillar-cta {
    text-align: center;
    padding: 6rem 0;
    background: var(--black);
    border-top: 2px solid var(--gold);
}

.pillar-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.pillar-cta p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.pillar-cta .btn {
    margin: 0 0.5rem;
}

/* Pillar Nav (bottom) */
.pillar-nav {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    background: var(--black-light);
}

.pillar-nav .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-nav-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pillar-nav-item.next {
    text-align: right;
}

.pillar-nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.pillar-nav-item a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
}

.pillar-nav-item a:hover {
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
    .pillar-hero {
        min-height: 50vh;
    }

    .pillar-number {
        font-size: 3.5rem;
    }

    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .pillar-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pillar-section {
        padding: 4rem 0;
    }

    .pillar-nav .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pillar-nav-item.next {
        text-align: left;
    }
}
