/* ==========================================================================
   Founding Partners Page
   ========================================================================== */

/* Base
   ========================================================================== */

.fp-page {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1d2433;
}

.fp-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fp-container--narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section shared
   ========================================================================== */

.fp-section {
    padding: 72px 0;
}

.fp-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d8a62a;
    margin-bottom: 0.75rem;
}

.fp-section-title {
    font-size: clamp( 1.6rem, 3.5vw, 2.4rem );
    font-weight: 700;
    color: #0b2c6b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Cross Dividers
   ========================================================================== */

.fp-cross-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    height: 80px;
}

.fp-cross-divider::before,
.fp-cross-divider::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient( to right, transparent, rgba( 216, 166, 42, 0.5 ) );
}

.fp-cross-divider::after {
    background: linear-gradient( to left, transparent, rgba( 216, 166, 42, 0.5 ) );
}

.fp-cross-icon {
    margin: 0 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.fp-cross--navy-to-light {
    background: linear-gradient( to bottom, #0b2c6b 50%, #f7f9fc 50% );
}

.fp-cross--white-to-navy {
    background: linear-gradient( to bottom, #ffffff 50%, #0b2c6b 50% );
}

/* Buttons
   ========================================================================== */

.fp-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border: 2px solid transparent;
}

.fp-btn--primary {
    background: #d8a62a;
    color: #0b2c6b;
    border-color: #d8a62a;
}

.fp-btn--primary:hover {
    background: #e6b93a;
    border-color: #e6b93a;
}

.fp-btn--secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba( 255, 255, 255, 0.6 );
}

.fp-btn--secondary:hover {
    border-color: #ffffff;
}

.fp-btn--large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Hero
   ========================================================================== */

.fp-hero {
    background-color: #0b2c6b;
    padding: 96px 2rem;
    text-align: center;
    color: #ffffff;
}

.fp-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.fp-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d8a62a;
    margin-bottom: 1.5rem;
}

.fp-hero-title {
    font-size: clamp( 1.8rem, 4vw, 3rem );
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.fp-hero-subtitle {
    font-size: clamp( 1rem, 2vw, 1.15rem );
    color: rgba( 255, 255, 255, 0.8 );
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.fp-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-cross--hero-to-light {
    background: linear-gradient( to bottom, #0b2c6b 50%, #f7f9fc 50% );
}
/* Vision
   ========================================================================== */

.fp-vision {
    background: #f7f9fc;
    text-align: center;
}

.fp-vision-mission {
    font-size: 1.05rem;
    color: #1d2433;
    margin-bottom: 2rem;
}

.fp-pillars {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.fp-pillar {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 24px rgba( 11, 44, 107, 0.07 );
    border-top: 3px solid #d8a62a;
}

.fp-pillar-word {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2c6b;
    margin-bottom: 0.75rem;
}

.fp-pillar p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.fp-vision-close {
    font-size: 1.1rem;
    color: #0b2c6b;
    font-weight: 700;
    font-style: italic;
}

/* Why This Matters — Cards
   ========================================================================== */

.fp-why {
    background: #ffffff;
}

.fp-cards {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    gap: 1.5rem;
}

.fp-card {
    background: #f7f9fc;
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #d8a62a;
}

.fp-card-icon {
    color: #d8a62a;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}

.fp-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b2c6b;
    margin-bottom: 0.75rem;
}

.fp-card-body {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Invitation
   ========================================================================== */

.fp-invitation {
    background: #0b2c6b;
    color: #ffffff;
    text-align: center;
}

.fp-invitation .fp-section-title {
    color: #ffffff;
}

.fp-invitation-lead {
    font-size: 1.1rem;
    color: rgba( 255, 255, 255, 0.8 );
    margin-bottom: 2rem;
}

.fp-quote {
    font-size: clamp( 1.1rem, 2.5vw, 1.4rem );
    font-style: italic;
    color: #d8a62a;
    line-height: 1.6;
    border: none;
    margin: 0 auto;
    max-width: 560px;
    padding: 0;
}

/* How to Partner
   ========================================================================== */

.fp-how {
    background: #f7f9fc;
}

.fp-commit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.fp-commit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #1d2433;
}

.fp-commit-marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8a62a;
    flex-shrink: 0;
}

.fp-honor-wrap {
    display: flex;
    justify-content: center;
}

.fp-honor {
     max-width: 400px;
    width: 100%;
    text-align: center;
}

.fp-honor-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d8a62a;
    margin-bottom: 0.5rem;
}

.fp-honor-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.fp-honor-perks {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-perk {
    background: rgba( 216, 166, 42, 0.15 );
    border: 1px solid rgba( 216, 166, 42, 0.35 );
    color: #d8a62a;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

/* What This Supports
   ========================================================================== */

.fp-supports {
    background: #ffffff;
    text-align: center;
}

.fp-support-grid {
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
    gap: 1.5rem;
}

.fp-support-item {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 1.5rem;
    border-bottom: 3px solid #d8a62a;
    font-weight: 700;
    color: #0b2c6b;
    font-size: 0.95rem;
}

/* The Moment
   ========================================================================== */

.fp-moment {
    background: #0b2c6b;
    text-align: center;
    color: #ffffff;
}

.fp-moment-date {
    font-size: clamp( 2rem, 5vw, 3.5rem );
    font-weight: 700;
    color: #d8a62a;
    margin-bottom: 0.5rem;
}

.fp-moment-event {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fp-moment-location {
    font-size: 0.9rem;
    color: rgba( 255, 255, 255, 0.55 );
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Form
   ========================================================================== */

.fp-form-section {
    background: #f7f9fc;
}

.fp-form-intro {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.fp-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.fp-form-group--full {
    grid-column: 1 / -1;
}

.fp-form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b2c6b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fp-optional {
    font-weight: 400;
    color: #8a94a6;
    text-transform: none;
    letter-spacing: 0;
}

.fp-form-group input,
.fp-form-group select,
.fp-form-group textarea {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.95rem;
    color: #1d2433;
    background: #ffffff;
    border: 1px solid #d0d7e2;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.fp-form-group input:focus,
.fp-form-group select:focus,
.fp-form-group textarea:focus {
    border-color: #0b2c6b;
}

.fp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.fp-form-submit {
    text-align: center;
    margin-top: 1rem;
}

/* Final CTA
   ========================================================================== */

.fp-final {
    background: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.fp-final-title {
    font-size: clamp( 1.6rem, 3vw, 2.2rem );
    font-weight: 700;
    color: #0b2c6b;
    margin-bottom: 2rem;
}

/* Footer tagline override
   ========================================================================== */

.fp-page .site-footer-tagline {
    content: 'Equipping Believers. Transforming Lives. Sending Leaders.';
}

/* Responsive
   ========================================================================== */

@media ( max-width: 768px ) {
    .fp-pillars {
        grid-template-columns: 1fr;
    }

    .fp-cards {
        grid-template-columns: 1fr;
    }

    .fp-support-grid {
        grid-template-columns: repeat( 2, 1fr );
    }

    .fp-form-row {
        grid-template-columns: 1fr;
    }

    .fp-honor {
        max-width: 100%;
    }
}

@media ( max-width: 480px ) {
    .fp-support-grid {
        grid-template-columns: 1fr;
    }

    .fp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}