:root {
    --bg-main: #090909;
    --bg-sec: #151515;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-gold: #D4AF37; 
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

/* Global Header (Transparent to Dark) */
.global-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: linear-gradient(to bottom, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0) 100%);
    z-index: 100;
}

.logo a {
    font-family: var(--font-sans);
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
}

.minimal-nav { display: flex; gap: 2rem; }
.minimal-nav a, .cart-btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    background: none; border: none; cursor: pointer;
}
.minimal-nav a.active { color: var(--text-muted); }

/* Journal Wrapper & Hero */
.journal-wrapper { padding: 8rem 4rem 4rem 4rem; max-width: 1400px; margin: 0 auto; }

.journal-hero {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 400px;
    line-height: 1.6;
}

/* Editorial Grid Layout */
.editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem; /* Large gaps for breathing room */
}

.drop-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

/* Featured Entry: Asymmetrical Overlap */
.featured-entry {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.entry-image-wrapper { width: 75%; height: 70vh; overflow: hidden; }
.entry-image { width: 100%; height: 100%; object-fit: cover; }

.entry-text-card {
    background-color: var(--bg-sec);
    padding: 3rem;
    width: 40%;
    position: absolute;
    right: 0;
    bottom: -10%; /* Breaks the grid slightly */
}

.entry-text-card h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.entry-text-card p {
    font-weight: 300;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.read-more {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Poetry Entry: Offset Right with Drop Cap */
.poetry-entry {
    display: flex;
    justify-content: flex-end; /* Pushes content to the right */
    padding-right: 10%;
}

.poetry-content { max-width: 500px; }
.poetry-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.lyrics .stanza {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 2;
    color: #ddd;
}

/* Editorial Drop Cap */
.lyrics .stanza::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    color: var(--text-main);
    font-family: var(--font-serif);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}