* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    min-height: 100vh;
    position: relative;
}

/* Subtle mountain silhouette background */
.mountain-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, transparent 40%, #e8f4f8 40%, #e8f4f8 45%, transparent 45%),
                linear-gradient(225deg, transparent 40%, #f0f7fa 40%, #f0f7fa 45%, transparent 45%),
                linear-gradient(160deg, transparent 50%, #edf5f8 50%, #edf5f8 55%, transparent 55%);
    opacity: 0.5;
    pointer-events: none;
}

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative;
}

/* Hero */
.hero {
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a3a4a;
    letter-spacing: -0.02em;
}

/* Peak accent - subtle mountain peak shape */
.peak-accent {
    width: 40px;
    height: 20px;
    margin-top: 16px;
    background: linear-gradient(135deg, transparent 50%, #3498db 50%),
                linear-gradient(225deg, transparent 50%, #2980b9 50%);
    background-size: 20px 20px;
    background-position: 0 0, 20px 0;
    background-repeat: no-repeat;
    opacity: 0.7;
}

/* Content Sections */
.content {
    margin-bottom: 60px;
}

.section {
    margin-bottom: 40px;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5d7a8c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.section p {
    font-size: 1rem;
    color: #2c3e50;
}

.section a {
    color: #2980b9;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section a:hover {
    color: #1a5276;
}

/* Portfolio Item */
.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-name {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
}

.item-type {
    font-size: 0.9rem;
    color: #5d7a8c;
}

/* Footer */
footer {
    padding-top: 40px;
    border-top: 1px solid #d5e5ed;
}

footer p {
    font-size: 0.8rem;
    color: #7f9cad;
}

/* Responsive */
@media (max-width: 480px) {
    main {
        padding: 60px 20px 30px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .mountain-bg {
        height: 150px;
    }
}
