/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #3a3530;
    background: #F2EDE4;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === Layout === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.narrow {
    max-width: 1100px;
}

/* === Nav === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.5rem;
    background: rgba(242, 237, 228, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(58, 53, 48, 0.1);
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.2rem;
}

.nav-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A6B5A;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: #7a7168;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1A6B5A;
}

.nav-btn {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #C84B31;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 75, 49, 0.3);
}

/* === Sections === */
.section {
    padding: 3.5rem 1.5rem;
}

.section-dark {
    background: #EDE7DC;
}

.section-black {
    background: #E8E1D6;
}

.section-gradient {
    background: linear-gradient(135deg, #E8E1D6 0%, #F2EDE4 100%);
    padding: 2.5rem 1.5rem;
}

/* === Hero === */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F2EDE4;
    padding: 2rem 1.5rem;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 80%, rgba(26, 107, 90, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-label {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #1A6B5A;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #2a2520;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-heading em {
    font-style: italic;
    background: linear-gradient(135deg, #C84B31, #D4602A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
}

.hero-sub {
    font-size: 1.15rem;
    color: #5a5248;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.hero-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2.2rem;
    background: #C84B31;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 75, 49, 0.35);
}

.hero-highlight {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A6B5A;
}

/* === Bringing Together === */
.bringing {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #5a5248;
    text-align: center;
}

.bringing strong {
    color: #2a2520;
    font-weight: 800;
}

/* === Fellowship === */
.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2a2520;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title.center {
    text-align: center;
}

.fellowship-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #8a8178;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fellowship-desc {
    text-align: center;
    font-size: 1.05rem;
    color: #5a5248;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.fellowship-desc strong {
    color: #C84B31;
    font-weight: 800;
}

.fellowship-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.fellowship-card {
    padding: 1.5rem;
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fellowship-card:hover {
    border-color: #1A6B5A;
    box-shadow: 0 4px 16px rgba(26, 107, 90, 0.1);
}

.fellowship-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A6B5A;
    margin-bottom: 0.4rem;
    white-space: nowrap;
}

.fellowship-card p {
    font-size: 0.9rem;
    color: #6a6158;
    line-height: 1.6;
}

.fellowship-closer {
    text-align: center;
    font-size: 0.95rem;
    color: #8a8178;
}

.fellowship-closer strong {
    color: #2a2520;
}

/* === Info Grid (Details + Who) === */
.info-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 1rem;
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 10px;
    text-align: center;
    aspect-ratio: 1;
}

.detail-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #C84B31;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a5248;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-dates {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A6B5A;
    text-align: center;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
}

.details-card {
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.details-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #3a3530;
    text-align: center;
}

.details-strip-item strong {
    color: #C84B31;
    font-weight: 700;
}

.details-strip-divider {
    color: #bbb4a8;
    font-size: 1.2rem;
}

.detail-note {
    font-size: 0.85rem;
    color: #8a8178;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

/* === Criteria List === */
.criteria-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.criteria-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4238;
    padding: 0.9rem 1.1rem;
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 10px;
}

/* === About Us === */
.about-header {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.about-lead {
    font-size: 1.05rem;
    color: #6a6158;
    line-height: 1.75;
    margin-top: 0.75rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.team-card:hover {
    border-color: #1A6B5A;
    transform: translateY(-3px);
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #EDE7DC;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
}

.team-photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EDE7DC, #E8E1D6);
    font-size: 2rem;
    font-weight: 800;
    color: #1A6B5A;
    letter-spacing: 0.05em;
}

.team-info {
    padding: 1.4rem 1.3rem 1.6rem;
}

.team-name {
    font-size: 1rem;
    font-weight: 800;
    color: #2a2520;
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C84B31;
    margin-bottom: 0.8rem;
}

.team-bio {
    font-size: 0.875rem;
    color: #7a7168;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-photo-wrap {
        aspect-ratio: 4 / 3;
    }

    .team-photo {
        object-position: center 20%;
    }
}

/* === FAQ === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.faq-item {
    background: #FAF7F2;
    border: 1px solid #DDD5C8;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: #1A6B5A;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #3a3530;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { color: #1A6B5A; }

.faq-icon {
    color: #bbb5aa;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #1A6B5A;
}

.faq-answer {
    padding: 0 1.3rem 1.2rem;
    border-top: 1px solid #E8E1D6;
}

.faq-answer p {
    padding-top: 1rem;
    font-size: 0.88rem;
    color: #6a6158;
    line-height: 1.75;
}

/* === CTA Section === */
.section-cta {
    background: linear-gradient(180deg, #E8E1D6 0%, #F2EDE4 100%);
    text-align: center;
    padding: 4rem 1.5rem;
}

.cta-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #2a2520;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #C84B31;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(200, 75, 49, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(200, 75, 49, 0.35);
}

.cta-fine {
    font-size: 0.85rem;
    color: #8a8178;
    margin-top: 1rem;
    font-style: italic;
}

/* === Footer === */
.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(58, 53, 48, 0.1);
    background: #F2EDE4;
}

.footer-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A6B5A;
    margin-bottom: 0.2rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: #a09888;
}

/* === Responsive === */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .hero {
        min-height: 60vh;
    }

    .section {
        padding: 2.5rem 1.25rem;
    }

    .fellowship-cards {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-cta {
        padding: 3rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.4rem;
    }

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

    .bringing {
        font-size: 1.1rem;
    }
}
