* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Georgia', serif;
    background: #f9f5f0;
    color: #2f2f2f;
}
header {
    background: #2c1f18;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img {
    height: 60px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
nav ul li .cta {
    background: #d97706;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.hero {
    background: url('hero-placeholder.jpg') center/cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    background-color: #3b2f2f;
}
.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.slogan {
    font-style: italic;
    margin-bottom: 1.5rem;
}
.btn-primary {
    background: #d97706;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    gap: 2rem;
    align-items: center;
}
.feature-text {
    flex: 1;
}
.feature-image {
    flex: 1;
}
.feature-image img {
    width: 100%;
    border-radius: 8px;
}
.buttons a {
    margin-right: 1rem;
    margin-top: 1rem;
    display: inline-block;
}
.btn-secondary {
    background: #2c1f18;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
}
.btn-outline {
    border: 2px solid #2c1f18;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #2c1f18;
    border-radius: 4px;
}
.products {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.product-card {
    background: #f4f1ee;
    padding: 1rem;
    border-radius: 6px;
}
.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}
footer {
    background: #2c1f18;
    color: white;
    text-align: center;
    padding: 1rem;
}