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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f1117;
    color: #e0e0e0;
    min-height: 100vh;
}

a {
    color: inherit;
}

/* ---------- Front page hero ---------- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.initials {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d8d8d8;
    margin-bottom: 0.2rem;
}

.title {
    font-size: 1rem;
    color: #909090;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.divider {
    width: 40px;
    height: 1px;
    background: #303030;
    margin: 0 auto 1.75rem;
}

.contact a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid #505050;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.contact a:hover {
    color: #ffffff;
    border-color: #808080;
}

/* ---------- Areas of interest (front page) ---------- */

.interests {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1a1c24;
}

.interests-label {
    font-size: 0.72rem;
    color: #a8a8a8;
    font-weight: 600;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.interests-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 340px;
    margin: 0 auto;
}

.interests-list li a {
    text-decoration: none;
    display: block;
}

.interests-list li a:hover .heading {
    color: #ffffff;
}

.interests-list .heading {
    display: block;
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 600;
    transition: color 0.2s;
}

.interests-list .detail {
    display: block;
    font-size: 0.75rem;
    color: #909090;
    font-weight: 400;
    margin-top: 0.35rem;
    line-height: 1.55;
}

/* ---------- Subpage header (minimal DJC mark, links home) ---------- */

.site-header {
    text-align: center;
    padding: 2.5rem 2rem 0;
}

.site-header a {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: #a8a8a8;
    transition: color 0.2s;
}

.site-header a:hover {
    color: #ffffff;
}

/* ---------- Subpage content ---------- */

.page {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.page-label {
    font-size: 0.72rem;
    color: #a8a8a8;
    font-weight: 600;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-align: center;
}

.page-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-body p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.page-body ul {
    margin: 0 0 1.25rem 1.25rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.75;
}

.page-body h2 {
    font-size: 1rem;
    color: #d8d8d8;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
}

.back-link a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #808080;
    border-bottom: 1px solid #404040;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.back-link a:hover {
    color: #ffffff;
    border-color: #808080;
}

/* ---------- Footer (all pages) ---------- */

.site-footer {
    text-align: center;
    padding: 2rem 2rem 3rem;
    font-size: 0.72rem;
    color: #505050;
    letter-spacing: 0.05rem;
}

.site-footer a {
    text-decoration: none;
    color: #707070;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: #d8d8d8;
}

.site-footer .sep {
    color: #303030;
    margin: 0 0.6rem;
}
