:root {
    --stone-deep: #0f0e0c;
    --stone-dark: #1a1816;
    --stone-mid: #2a2622;
    --stone-warm: #3d3630;
    --text-cream: #e8dfd4;
    --text-soft: #b8ad9e;
    --text-muted: #8a7e70;
    --cedarwood: #c4875a;
    --amber: #d4a46a;
    --honey: #e0be7a;
    --labradorite: #4a8a8c;
    --labradorite-glow: #5eaaad;
}

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

body {
    background-color: var(--stone-deep);
    color: var(--text-cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    line-height: 1.7;
    min-height: 100vh;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 14, 12, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone-warm);
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-name {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cedarwood);
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav .nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: var(--text-cream);
}

/* --- PAGE CONTENT --- */
.page-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--text-cream);
    margin-bottom: 0.8rem;
}

.page-header .page-meta {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* --- PROSE --- */
.prose {
    margin-bottom: 4rem;
}

.prose p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-cream);
}

.prose h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--cedarwood);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--stone-warm);
}

.prose em {
    font-style: italic;
    color: var(--amber);
}

.prose blockquote {
    border-left: 2px solid var(--stone-warm);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: var(--text-soft);
    font-style: italic;
}

.prose a {
    color: var(--labradorite);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.prose a:hover {
    border-bottom-color: var(--labradorite);
}

/* --- SIGN --- */
.page-sign {
    padding-top: 2rem;
    border-top: 1px solid var(--stone-warm);
    font-style: italic;
    color: var(--text-soft);
}

.page-sign .sign-meta {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-style: normal;
}

/* --- FOOTER --- */
footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    border-top: 1px solid var(--stone-warm);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

footer .footer-left {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

footer .footer-right {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
}

footer .footer-right span {
    color: var(--cedarwood);
}

/* --- ENTRY LIST --- */
.entry-list {
    list-style: none;
}

.entry-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(61, 54, 48, 0.5);
}

.entry-list .entry-date {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--labradorite);
    margin-bottom: 0.4rem;
}

.entry-list .entry-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--text-cream);
    margin-bottom: 0.5rem;
}

.entry-list .entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-list .entry-title a:hover {
    color: var(--cedarwood);
}

.entry-list .entry-excerpt {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* --- PLACEHOLDER --- */
.placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.placeholder .placeholder-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--stone-warm);
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
    .page-header h1 {
        font-size: 2rem;
    }

    nav .nav-links {
        gap: 1rem;
    }

    nav .nav-links a {
        font-size: 0.7rem;
    }

    footer {
        flex-direction: column;
        gap: 0.8rem;
    }
}
