
body {
    max-width: 100vw;
}

.hero {
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 2rem;
    background: var(--black);
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/ulls.png');
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--white);
}

.hero p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.quote-intro {
    background: var(--cream);
    padding: 3rem 2rem;
    text-align: center;
}

.quote-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.9;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto;
}

.quote-intro em {
    font-style: italic;
}

.quote-intro cite {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #666;
    margin-top: 1.5rem;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    position: relative;
}

.section:nth-child(odd) {
    background: var(--cream);
    color: var(--black);
}

.section:nth-child(even) {
    background: var(--charcoal);
    color: #fff;
}


.section-visual, .section-title {
    position: sticky;
    top: 0;
}

.section-visual {
    top: 20px;
}

.section-title {
    top: 62px;
}


.section-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.section:nth-child(even) .section-container {
    direction: rtl;
}

.section:nth-child(even) .section-container > * {
    direction: ltr;
}

.section-content {
    min-width: 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    z-index: 10;
    padding: 1rem 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    white-space: nowrap;
}

.section:nth-child(odd) .section-title {
    background: var(--cream);
}

.section:nth-child(even) .section-title {
    background: var(--charcoal);
}

.section-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 300;
    line-height: 1;
    opacity: 0.15;
}

.section:nth-child(odd) .section-number {
    color: #777;
}

.section:nth-child(even) .section-number {
    color: #fff;
}

.philosophy-quote {
    margin-top: 1rem;
}

.philosophy-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-quote cite {
    display: block;
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.15em;
    color: var(--gray-light);
    margin-top: 2rem;
}

.section:nth-child(odd) .philosophy-quote cite {
    color: #666;
}

.intro {
    color: inherit;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.area {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.area-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    opacity: 0.4;
}

.area p {
    line-height: 1.7;
    margin: 0.5rem 0;
}

.thesis {
    opacity: 1;
}

.thesis a {
    color: var(--gray-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-medium);
    transition: opacity 0.3s ease;
}

.thesis a:hover {
    opacity: 0.7;
}

.area a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-medium);
    transition: opacity 0.3s ease;
}

.area a:hover {
    opacity: 0.7;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid currentColor;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.timeline-item:first-child {
    border-top: 1px solid currentColor;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-top: 0.1rem;
}

.timeline-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-title {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.timeline-content em {
    font-style: italic;
}

@media (max-width: 768px) {
    .hero {
        padding: 10rem 1rem 2rem;
    }

    .hero h1 {
        letter-spacing: 0.05em;
    }

    .hero p {
        letter-spacing: 0.25em;
    }

    .section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .section-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-visual {
        display: none;
    }

    .section-title {
        position: sticky;
        top: 42px;
        margin-left: 0;
        margin-right: 0;
        padding: 0.5rem 0;
        font-size: 1.5rem;
        white-space: normal;
    }

    .areas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    footer {
        font-size: 0.5rem;
    }
}