/* Methodology Page Styles */

.methodology-hero {
    padding: 140px 0 80px;
    background: var(--ivory-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.methodology-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(6, 70, 53, 0.05), transparent 70%);
    z-index: 0;
}

.methodology-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.methodology-intro {
    padding: 80px 0;
    background: white;
}

.methodology-intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.directions-section {
    padding: 100px 0;
    background: var(--emerald-deep);
    color: var(--ivory-bg);
}

.directions-section h2 {
    color: var(--ivory-bg);
    text-align: center;
    margin-bottom: 50px;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.direction-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 173, 96, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.direction-icon {
    font-size: 2rem;
    color: var(--gold-muted);
    margin-bottom: 15px;
    display: block;
}

.founders-section {
    padding: 100px 0;
    background: var(--ivory-bg);
}

.founder-block {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.founder-block h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.founder-dates {
    color: var(--gold-muted);
    font-style: italic;
    margin-bottom: 30px;
    display: block;
    font-size: 1.1rem;
}

.founder-content p {
    margin-bottom: 15px;
}

.publications-list, .scientific-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.publications-list li, .scientific-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.publications-list li::before, .scientific-list li::before {
    content: '▪';
    color: var(--gold-muted);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.poem-block {
    background: var(--ivory-bg);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--gold-muted);
    margin-top: 40px;
    font-style: italic;
}

.poem-line {
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 768px) {
    .founder-block {
        padding: 30px;
    }
    .methodology-hero h1 {
        font-size: 3rem;
    }
}
