@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
    --accent: #2d6a4f;
    --accent-light: #e8f5ee;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #fafaf8;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

.wrapper {
    flex: 1;
}

/* ── INTRO ── */
.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background-color: var(--accent);
    color: white;
}

.intro::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -150px;
    right: -100px;
}

.intro::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -100px;
    left: -50px;
}

.intro h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.intro p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ── ABOUT ── */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    gap: 1.5rem;
}

.about img {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    outline: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(45,106,79,0.15);
}

.about h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
}

.about p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
}

/* ── DIVIDER ── */
.divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
    opacity: 0.3;
}

/* ── PROJECTS ── */
.projects {
    background: var(--accent-light);
    padding: 5rem 2rem;
}

.projects h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
    text-align: center;
    margin-bottom: 2.5rem;
}

.projects ul {
    list-style: none;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.projects li {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.projects li strong {
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border);
    background: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: var(--muted);
    opacity: 0.7;
}