*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9943a;
    --gold-light: #e8bc6a;
    --cream: #fdf6ec;
    --dark: #1a1208;
    --text: #3b2e15;
    --spice: #8b2e0a;
    --green: #2d5a27;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(26, 18, 8, .92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201, 148, 58, .2);
}

.logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--spice));
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.logo-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
    font-size: .8rem;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .9rem;
    letter-spacing: .05em;
    transition: color .2s;
}

nav ul a:hover {
    color: var(--gold-light);
}

main {
    flex: 1;
    padding: 8rem 5% 4rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--spice));
    margin: 1.2rem auto;
    border-radius: 2px;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.post-img-container {
    width: 100%;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, #1a0a02, #3d1f08);
    display: grid;
    place-items: center;
}

.post-img-container img,
.post-img-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.post-content {
    padding: 2.5rem;
}

.post-meta {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-body {
    color: #6b5a42;
    line-height: 1.8;
    white-space: pre-wrap;
}

.empty-state {
    text-align: center;
    padding: 4rem;
    color: #6b5a42;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .6);
    padding: 3rem 5%;
    text-align: center;
    margin-top: 4rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

footer a {
    color: var(--gold-light);
    text-decoration: none;
}

@media (min-width: 800px) {
    .post.has-media {
        flex-direction: row;
    }

    .post.has-media .post-img-container {
        width: 40%;
        height: auto;
        min-height: 300px;
    }

    .post.has-media .post-content {
        width: 60%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    nav ul {
        gap: 1rem;
    }

    main {
        padding: 6rem 5% 3rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-img-container {
        height: 200px;
    }
}