/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    text-align: justify;
}

/* === Layout === */
.site-content,
.site-footer {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
}

/* === Header === */
.site-header {
    overflow: hidden;
    height: 0;
    padding: 0;
    margin: 0;
}

.site-branding {
    margin-bottom: 8px;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #000;
    text-decoration: none;
}

.site-tagline {
    font-size: 14px;
    color: #666;
    margin: 2px 0 0;
    font-style: italic;
}

/* === Nav === */
.nav-primary {
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3em;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a:focus {
    text-decoration: underline;
    color: #008CBA;
}

/* === Content === */
.site-content {
    padding-bottom: 40px;
}

h1 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 22px;
    clear: left;
    color: #444;
}

h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 22px;
    clear: left;
    color: #444;
}

p {
    margin-bottom: 12px;
}

a {
    color: #333;
    text-decoration: underline;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #008CBA;
}

ul {
    margin: 0 0 12px 1.5em;
    padding: 0;
}

li {
    margin-bottom: 4px;
}

/* === CV-specific === */
.contact-info {
    margin-bottom: 16px;
}

.entry-meta {
    margin-bottom: 12px;
    color: #333;
}

/* === Footer === */
.site-footer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #000;
}

/* === Legal pages === */
.legal-page h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    margin-bottom: 12px;
}

/* === Print === */
@media print {
    .site-header,
    .nav-primary,
    .site-footer {
        display: none;
    }

    .site-content {
        max-width: none;
        width: auto;
        padding: 0;
        margin: 0;
    }

    body {
        font-size: 12pt;
    }

    a,
    a:hover,
    a:focus,
    a:visited {
        color: inherit;
        text-decoration: none;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 16pt;
        margin-top: 20px;
    }
}
