/* Full-height layout */
body.page-template-press-kit {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-template-press-kit #page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero */
.press-hero {
    text-align: center;
    max-width: 900px;
    margin: 140px auto 60px;
    padding: 0 20px;
}

.press-title {
    font-size: 3rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.press-subtext {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Sections */
.press-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.press-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.press-text {
    font-size: 1.25rem;
    color: #EDE9E2;
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Coming Soon badge */
.press-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;
}

/* Email */
.press-email {
    color: #CBA86E;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.press-email:hover {
    opacity: 0.75;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
