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

:root {
    --primary: #820855;
    --primary-dark: #5c0540;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6f6f6f;
    --border: #e0dcd8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* HEADER */
.header {
    padding: 3rem 0 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    text-align: center;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}

.contact-links a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

/* MAIN */
main {
    margin-bottom: 3rem;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* PROJECTS */
.project {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary);
}

.project h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.project p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.project ul {
    list-style: none;
    margin: 0;
}

.project li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.project li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* DISCIPLINE BLOCKS */
.discipline {
    background-color: var(--bg-white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.discipline h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.discipline p {
    margin-bottom: 0;
}

/* CTA */
.cta {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
    border: none;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* FOOTER */
footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .name {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-links {
        gap: 1rem;
    }

    .cta-button {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .name {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
