/* Mobile-First Architecture - Clean & Bold */

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

/* Base Mobile Styles */
body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 17px;
    line-height: 1.6;
    color: #2c2c2a;
    background-color: #fff3f3;
    padding: 20px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: transparent;
}

/* Header - Bold & Minimal */
header {
    padding-bottom: 24px;
    margin-bottom: 48px;
}

header h1 {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

header h1 a {
    color: #a07cff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

header h1 a:hover {
    opacity: 0.7;
}

.byline {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-variant: small-caps;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #7a7a78;
    margin-bottom: 20px;
}

/* Navigation - Clean & Prominent */
nav {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

nav a {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2a;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    padding: 0;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

nav a:hover {
    color: #a07cff;
}

/* Main Content */
main {
    margin-bottom: 64px;
}

section {
    margin-bottom: 56px;
}

h2 {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 24px;
    color: #a07cff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2a;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.15em;
}

/* Essay List - Clean Cards */
#essay-list {
    list-style: none;
}

.essay-item {
    margin-bottom: 32px;
    padding: 0;
    background-color: transparent;
    border-left: none;
}

.essay-item h3 {
    margin-bottom: 8px;
    font-size: 1.6em;
    font-weight: 800;
}

.essay-item h3 a {
    color: #2c2c2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.essay-item h3 a:hover {
    color: #a07cff;
}

.essay-date {
    font-family: 'EB Garamond', Georgia, serif;
    color: #7a7a78;
    font-size: 1em;
    font-style: italic;
    margin-bottom: 8px;
}

/* Essay Display - Typography First */
#essay-content {
    margin-top: 32px;
}

#essay-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #2c2c2a;
}

#essay-date {
    font-family: 'EB Garamond', Georgia, serif;
    color: #a07cff;
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Essay Body - Pure Reading Experience */
#essay-body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.25em;
    line-height: 1.8;
}

#essay-body p {
    margin-bottom: 28px;
}

#essay-body h1,
#essay-body h2,
#essay-body h3 {
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #2c2c2a;
}

#essay-body h1 {
    font-size: 1.8em;
}

#essay-body h2 {
    font-size: 1.5em;
}

#essay-body h3 {
    font-size: 1.3em;
}

#essay-body blockquote {
    border-left: 4px solid #a07cff;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #5a5a58;
    font-size: 1.1em;
}

#essay-body ul,
#essay-body ol {
    margin-left: 28px;
    margin-bottom: 28px;
}

#essay-body li {
    margin-bottom: 12px;
}

#essay-images img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border: none;
    padding: 0;
}

/* Footer - Minimal */
footer {
    font-family: 'acumin-pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 24px;
    text-align: center;
    color: #7a7a78;
    font-size: 0.9em;
}

/* Links */
a {
    color: #a07cff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

a:visited {
    color: #8a5fed;
}

/* Subscribe Text */
.essay-subscribe-text {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #ffe0e0;
    font-style: italic;
    color: #7a7a78;
}

/* Tablet Styles (600px and up) */
@media (min-width: 600px) {
    body {
        padding: 32px;
    }

    header h1 {
        font-size: 3.5em;
    }

    nav {
        flex-direction: row;
        gap: 32px;
    }

    nav a {
        font-size: 1.4em;
    }

    h2 {
        font-size: 2.5em;
        margin-bottom: 32px;
    }

    .essay-item h3 {
        font-size: 1.9em;
    }

    #essay-title {
        font-size: 3.2em;
    }

    #essay-date {
        font-size: 1.2em;
    }

    #essay-body {
        font-size: 1.35em;
        line-height: 1.9;
    }
}

/* Desktop Styles (900px and up) */
@media (min-width: 900px) {
    .container {
        max-width: 900px;
        padding: 0 40px;
    }

    body {
        padding: 48px;
    }

    header h1 {
        font-size: 4.5em;
    }

    nav a {
        font-size: 1.5em;
    }

    h2 {
        font-size: 3em;
    }

    .essay-item h3 {
        font-size: 2.2em;
    }

    #essay-title {
        font-size: 4em;
    }

    #essay-date {
        font-size: 1.3em;
        margin-bottom: 48px;
    }

    #essay-body {
        font-size: 1.4em;
        line-height: 2;
    }

    #essay-body p {
        margin-bottom: 32px;
    }
}
