body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: #f4f0e8;
    color: #1f1a16;
}

.container {
    width: min(1000px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #1f1a16;
    color: #f4f0e8;
    padding: 2rem 0 1rem;
    border-bottom: 6px solid #8b4a24;
}

.site-title {
    margin: 0;
    font-size: 3rem;
}

.site-tagline {
    margin: 0.4rem 0 1.4rem;
    font-style: italic;
    color: #d8c3a5;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #f4f0e8;
    text-decoration: none;
    font-weight: bold;
    padding: 0.4rem 0;
}

.main-nav a:hover {
    color: #d8944a;
}

main {
    padding: 2rem 0;
}

.post {
    background: #fffaf0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 6px solid #8b4a24;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post h2 {
    margin-top: 0;
}

.post-date {
    color: #6d5c4d;
    font-size: 0.95rem;
}

.site-footer {
    background: #1f1a16;
    color: #d8c3a5;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.hero {
    min-height: 430px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin: -2rem 0 2rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: #fffaf0;
    max-width: 650px;
    padding: 3rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0 0 0.5rem;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.button {
    display: inline-block;
    background: #8b4a24;
    color: #fffaf0;
    padding: 0.7rem 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.button:hover {
    background: #a85a2c;
}

.intro {
    font-size: 1.15rem;
    max-width: 800px;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.build-card {
    background: #fffaf0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 5px solid #8b4a24;
}

.build-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.build-card h3,
.build-card p {
    margin-left: 1rem;
    margin-right: 1rem;
}

.build-card p {
    padding-bottom: 1rem;
}

.highlight {
    background: #fffaf0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 6px solid #8b4a24;
}

@media (max-width: 850px) {
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 520px) {
    .build-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 2rem;
    }
}