:root {
    --bg: #1a1816;
    --fg: #e8dcc0;
    --muted: #a89f8f;
    --link-color: #e8dcc0;
    --link-underline: #5a5248;
    --font-main: "STIX Two Text", serif;
}

html {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    font-size: 1.125rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--fg);
}

p {
    margin-bottom: 1.5rem;
    color: var(--fg);
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-color: var(--link-underline);
    text-underline-offset: 4px;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--muted);
}

.intro-links li::before {
    content: "→"; /* Explicitly ensuring this for the main list */
}

/* Utilities */
.muted {
    color: var(--muted);
}

/* Layout for Work/Projects/Mentorship pages if needed */
.entry {
    margin-bottom: 2rem;
}

.entry h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.entry .meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-main); /* Ensure consistency */
}

.entry p {
    margin-bottom: 0;
}

nav.back-link {
    margin-bottom: 2rem;
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Separator for Mentorship Services */
.service-separator {
    border: none;
    border-top: 1px dotted var(--muted);
    width: 25%;
    margin: 2rem 0;
    opacity: 0.4;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}
