:root {
    --green-dark:  #162e1f;
    --green-main:  #1a3d2a;
    --green-card:  #1f4a33;
    --gold:        #c9a96e;
    --gold-light:  #dbbf8a;
    --cream:       #f5edd6;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--green-main);
    color: var(--cream);
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--green-dark);
    border-bottom: 1px solid rgba(201,169,110,.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.nav-logo { height: 52px; }

.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold);
    color: var(--green-dark);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 4px;
    transition: background-color .2s;
}

.fb-btn:hover { background-color: var(--gold-light); }

.fb-btn svg { width: 17px; height: 17px; fill: var(--green-dark); flex-shrink: 0; }

.wholesale-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--gold);
    font-size: .92rem;
    text-decoration: none;
    letter-spacing: .03em;
    border-bottom: 1px solid rgba(201,169,110,.45);
    padding-bottom: 2px;
    transition: opacity .2s;
}

.wholesale-link:hover { opacity: .7; }

/* ── HERO ── */
.hero {
    text-align: center;
    padding: 80px 20px 64px;
    background: linear-gradient(175deg, var(--green-dark) 0%, var(--green-main) 100%);
}

.hero-logo {
    width: min(420px, 82vw);
    margin-bottom: 28px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    color: var(--gold);
    letter-spacing: .03em;
    margin-bottom: 36px;
}

/* ── DIVIDER ── */
.divider {
    width: 72px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 52px;
}

/* ── PRODUCTS ── */
.products {
    max-width: 1160px;
    margin: 0 auto;
    padding: 70px 32px 80px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--gold);
    text-align: center;
    letter-spacing: .05em;
    margin-bottom: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.card {
    background-color: var(--green-card);
    border: 1px solid rgba(201,169,110,.25);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

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

.card-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.badge {
    display: inline-block;
    align-self: flex-start;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: var(--green-dark);
    padding: 2px 9px;
    border-radius: 3px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    color: var(--gold);
    line-height: 1.3;
}

.product-desc {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--cream);
    opacity: .88;
    flex: 1;
}

.allergen {
    font-size: .75rem;
    font-style: italic;
    color: var(--gold-light);
    opacity: .7;
    margin-top: 4px;
}

/* ── FIND US ── */
.find-us {
    background-color: var(--green-dark);
    border-top: 1px solid rgba(201,169,110,.25);
    border-bottom: 1px solid rgba(201,169,110,.25);
    padding: 70px 32px 80px;
}

.find-us-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.find-us img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(201,169,110,.3);
    display: block;
}

.find-us-text .section-heading {
    text-align: left;
    margin-bottom: 14px;
}

.find-us-text .divider {
    margin: 0 0 24px;
}

.store-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.store-address {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: .85;
    margin-bottom: 28px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 4px;
    border: 2px solid var(--gold);
    transition: background-color .2s, color .2s;
}

.directions-btn:hover {
    background-color: var(--gold);
    color: var(--green-dark);
}

.directions-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background-color: var(--green-dark);
    border-top: 1px solid rgba(201,169,110,.3);
    text-align: center;
    padding: 48px 20px 36px;
}

.footer-logo { height: 62px; margin-bottom: 18px; }

.footer-info {
    font-size: .88rem;
    line-height: 2;
    color: var(--cream);
    opacity: .72;
    margin-bottom: 22px;
}

.footer-info a {
    color: var(--gold);
    text-decoration: none;
}

.footer-info a:hover { text-decoration: underline; }

.copyright {
    margin-top: 28px;
    font-size: .72rem;
    color: var(--cream);
    opacity: .35;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .find-us-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .find-us-text .section-heading { text-align: center; }
    .find-us-text .divider { margin: 0 auto 24px; }
}

@media (max-width: 560px) {
    nav { padding: 10px 16px; }
    .products { padding: 50px 16px 60px; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .card-body { padding: 12px 12px 16px; }
}
