/* Full-height layout */
body.page-template-life-at-primordial {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-template-life-at-primordial #page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero */
.life-hero {
    text-align: center;
    max-width: 900px;
    margin: 140px auto 60px;
    padding: 0 20px;
}

.life-title {
    font-size: 3rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.life-subtext {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Sections */
.life-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.life-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.life-text {
    font-size: 1.25rem;
    color: #EDE9E2;
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Values list */
.life-values {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.life-values li {
    font-size: 1.2rem;
    color: #EDE9E2;
    margin: 12px 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Coming Soon badge */
.life-coming-soon {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #CBA86E;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    opacity: 0.75;
    margin-top: 10px;
}

/* Button */
.life-button {
    background: linear-gradient(145deg, #FFB347, #FF8C00);
    color: #0D0D0F;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
}

.life-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
