/* === Reset === */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Base === */

:root {
    --honey: #c8940c;
    --honey-light: #f5e6c8;
    --honey-dark: #8a6508;
    --cream: #faf6ee;
    --charcoal: #2c2c2c;
    --warm-grey: #6b6560;
    --white: #ffffff;
    --sage: #7a8b6f;
    --moss: #5a6b4f;
    --clay: #b8755d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    line-height: 1.3;
}

/* === Hero === */

.hero {
    background: var(--honey-dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--honey-light);
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
}

/* === Sections === */

section {
    padding: 3.5rem 0;
}

section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--honey-dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 0.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--sage);
    border-radius: 1px;
}

section h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--honey-dark);
}

.section-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2rem;
    color: var(--warm-grey);
    font-style: italic;
}

/* === About === */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-photo {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* === Products === */

.products {
    background: var(--cream);
}

.product-group {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--honey-light);
}

.product-group:last-child {
    margin-bottom: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-grid.single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-card h4 {
    font-size: 1.05rem;
    font-weight: 400;
    padding: 0.75rem 1rem 0;
    color: var(--honey-dark);
}

.product-card p {
    padding: 0.25rem 1rem 1rem;
    font-size: 0.92rem;
    color: var(--warm-grey);
}

/* === Apiary === */

.apiary {
    background: var(--white);
    text-align: center;
}

.apiary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.apiary-grid img {
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.apiary-caption {
    max-width: 560px;
    margin: 0 auto;
    color: var(--warm-grey);
    font-style: italic;
}

/* === Markets === */

.markets {
    background: var(--cream);
    text-align: center;
}

.market-stalls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.market-stalls img {
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.market-note {
    font-style: italic;
    color: var(--warm-grey);
}

/* === Footer === */

footer {
    background: var(--honey-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.92rem;
    opacity: 0.95;
}

footer p {
    margin-bottom: 0.25rem;
}

footer p:last-child {
    margin-bottom: 0;
}

/* === Responsive === */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        width: 140px;
        height: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .apiary-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .market-stalls {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid.single {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
