/* ========================================
   Crew Page Styles
   ======================================== */

/* Hero */
.crew-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.crew-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #6B8E7B 0%, #8BA995 50%, #F5F0E6 100%);
    z-index: -1;
}

.crew-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--cream), transparent);
}

.crew-hero-content {
    text-align: center;
    padding: 60px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.crew-hero-logo {
    max-width: 360px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.crew-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.crew-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Card Sections */
.crew-card-section {
    padding: 100px 0;
    background: var(--cream);
}

.crew-card-section-alt {
    background: var(--sand);
}

.crew-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}

.crew-card-reverse {
    grid-template-columns: 1fr 340px;
}

.crew-card-reverse .crew-card-image {
    order: 2;
}

.crew-card-reverse .crew-card-content {
    order: 1;
}

/* Image */
.crew-card-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.crew-card-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(74, 107, 90, 0.22);
}

/* Content */
.crew-card-header {
    margin-bottom: 28px;
}

.crew-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.crew-badge-gold {
    background: #F5D547;
    color: #5a4500;
}

.crew-badge-brown {
    background: #c8a878;
    color: #4a3010;
}

.crew-badge-green {
    background: var(--primary);
    color: var(--white);
}

.crew-badge-pink {
    background: var(--accent-pink);
    color: var(--white);
}

.crew-card-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.15;
}

.crew-aka {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.crew-quote {
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Body text */
.crew-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crew-card-body p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* CTA */
.crew-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .crew-card,
    .crew-card-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crew-card-reverse .crew-card-image {
        order: 0;
    }

    .crew-card-reverse .crew-card-content {
        order: 1;
    }

    .crew-card-image img {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .crew-hero-content h1 {
        font-size: 2.5rem;
    }

    .crew-hero-logo {
        max-width: 260px;
    }

    .crew-card-header h2 {
        font-size: 2rem;
    }

    .crew-card-section {
        padding: 72px 0;
    }

    .crew-card-image img {
        max-width: 260px;
    }
}
