@charset "UTF-8";

:root {
    --bg-color: #FDFBF7; /* Soft cream */
    --text-color: #3E3129; /* Deep warm brown */
    --accent-blue: #85A0B4; /* Soft dusty blue */
    --accent-rose: #C27A65; /* Faded rose */
    --accent-gold: #D8C385; /* Pale gold */
    --border-color: #E2DCD0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'EB Garamond', serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    /* subtle pattern to give it a slightly textured, stationary feel */
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: -19px -19px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--bg-color);
    box-shadow: 0 0 60px rgba(253, 251, 247, 0.95);
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 4rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent-rose);
    margin: 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-rose);
}

.intro {
    font-size: 1.25rem;
    text-align: justify;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.drop-cap {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    color: var(--accent-gold);
}

.decorative-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 3rem 0;
}

.work-list {
    list-style: none;
    padding: 0;
}

.work-list li {
    margin-bottom: 2.5rem;
    text-align: center;
}

.work-list p {
    margin: 0;
    color: #615248;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #8C8076;
    margin-top: 4rem;
}
