/* =====================================================
   Folklore LB — Design system
   Palette: deep olive, warm cream, terracotta, charcoal, gold.
   Type   : Cormorant Garamond (display) + Inter (body).
   Layout : Mobile-first, single-column at small sizes.
   ===================================================== */

:root {
    /* Brand palette */
    --olive:      #4A5D3A;
    --olive-dk:   #364528;
    --olive-lt:   #6B7F58;
    --cream:      #F5F0E8;
    --cream-dk:   #E9E1D2;
    --terracotta: #C4784A;
    --terracotta-dk: #9F5C34;
    --charcoal:   #2C2416;
    --gold:       #B8956B;
    --gold-lt:    #D8BE95;

    /* Semantic */
    --bg:         #FBF8F2;
    --ink:        #241f18;
    --ink-mute:   #6a6357;
    --line:       #E4DDCE;
    --line-soft:  #EFEAE0;

    /* Type */
    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Motion */
    --ease: cubic-bezier(.4, .1, .25, 1);
    --dur:  .25s;

    /* Layout */
    --wrap-max: 1240px;
    --wrap-pad: 20px;
    --radius:   4px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 2px rgba(44,36,22,.05), 0 2px 8px rgba(44,36,22,.04);
    --shadow-md: 0 4px 12px rgba(44,36,22,.08), 0 12px 28px rgba(44,36,22,.06);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive-dk); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--terracotta); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 500; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Layout ---------- */
.wrap {
    width: 100%;
    max-width: var(--wrap-max);
    margin-inline: auto;
    padding-inline: var(--wrap-pad);
}

/* Serif display helper */
.h-serif {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.1;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: .55rem;
    padding: 14px 26px;
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn--primary {
    background: var(--olive);
    color: var(--cream);
    border-color: var(--olive);
}
.btn--primary:hover { background: var(--olive-dk); border-color: var(--olive-dk); color: var(--cream); }
.btn--outline {
    background: transparent;
    color: var(--olive-dk);
    border-color: var(--olive-dk);
}
.btn--outline:hover { background: var(--olive-dk); color: var(--cream); }
.btn--terracotta {
    background: var(--terracotta);
    color: #fff; border-color: var(--terracotta);
}
.btn--terracotta:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: #fff; }
.btn--light {
    background: var(--cream); color: var(--olive-dk); border-color: var(--cream);
}
.btn--light:hover { background: #fff; color: var(--olive-dk); }
.btn--ghost {
    background: transparent; color: var(--cream); border-color: rgba(245,240,232,.6);
}
.btn--ghost:hover { background: rgba(245,240,232,.12); color: #fff; border-color: #fff; }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--charcoal);
    color: var(--cream);
    font-size: .78rem;
    letter-spacing: .08em;
}
.topbar__inner {
    display: flex; justify-content: space-between; align-items: center;
    min-height: 36px; gap: 1rem;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--gold-lt); }
.topbar__note { opacity: .82; }
@media (max-width: 640px) {
    .topbar__note { display: none; }
    .topbar__inner { justify-content: center; }
}

/* ---------- Header / Nav ---------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    position: sticky; top: 0; z-index: 40;
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 76px; gap: 1.5rem;
}

.brand {
    display: inline-flex; align-items: baseline; gap: .4rem;
    color: var(--charcoal); text-decoration: none;
    font-family: var(--sans);
    line-height: 1;
}
.brand__mark { display: inline-flex; align-items: baseline; }
.brand__folk, .brand__lore {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: .04em;
}
.brand__folk { color: var(--charcoal); }
.brand__lore { color: var(--charcoal); }
.brand__tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--terracotta);
    margin-left: .35rem;
    font-weight: 500;
}
.brand:hover { color: var(--charcoal); }
.brand:hover .brand__tag { color: var(--terracotta-dk); }

.nav__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 2rem; align-items: center;
}
.nav__link {
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}
.nav__link:hover { color: var(--olive-dk); }
.nav__link.is-active { color: var(--olive-dk); }
.nav__link.is-active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--terracotta);
}

.nav__item--dropdown { position: relative; }
.nav__sub {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    position: absolute;
    top: calc(100% + .35rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
    z-index: 50;
}
.nav__item--dropdown:hover .nav__sub,
.nav__item--dropdown:focus-within .nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav__sub-link {
    display: block;
    padding: .65rem 1.1rem;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}
.nav__sub-link:hover,
.nav__sub-link.is-active {
    background: var(--cream);
    color: var(--olive-dk);
}

.nav-toggle {
    display: none;
    background: transparent; border: 0; padding: 8px;
    width: 42px; height: 42px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
    .nav { display: none; }
    .nav-toggle { display: block; }
}

.mobile-nav {
    background: #fff;
    border-top: 1px solid var(--line-soft);
    padding: 1rem 0 1.5rem;
}
.mobile-nav ul {
    list-style: none; padding: 0; margin: 0;
}
.mobile-nav a {
    display: block;
    padding: 14px var(--wrap-pad);
    font-size: 1rem; font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.mobile-nav a.is-active { color: var(--olive-dk); }
.mobile-nav__group-label {
    padding: 14px var(--wrap-pad) .35rem;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    border-bottom: 0;
}
.mobile-nav__sub {
    padding-left: calc(var(--wrap-pad) + 1rem);
    font-size: .92rem;
}
.mobile-nav__contact {
    padding: 1rem var(--wrap-pad) 0;
    display: flex; flex-direction: column; gap: .5rem;
    font-size: .9rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex; align-items: center;
    color: var(--cream);
    overflow: hidden;
    background: var(--charcoal);
}
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(.7);
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(44,36,22,.4) 0%,
        rgba(44,36,22,.55) 60%,
        rgba(44,36,22,.75) 100%);
}
.hero__inner {
    position: relative; z-index: 2;
    padding: 6rem 0 5rem;
    max-width: 720px;
}
.hero__eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-lt);
    padding-bottom: .35rem;
    border-bottom: 1px solid rgba(216, 190, 149, .4);
    margin-bottom: 1.5rem;
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
    color: #fff;
    margin: 0 0 1.25rem;
    font-style: italic;
}
.hero__title strong {
    font-style: normal;
    font-weight: 600;
    display: block;
    letter-spacing: -.01em;
}
.hero__lead {
    font-size: 1.1rem;
    max-width: 44ch;
    margin: 0 0 2rem;
    color: rgba(245, 240, 232, .9);
    line-height: 1.6;
}
.hero__ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__ctas .btn { max-width: 100%; }

/* ---------- Section common ---------- */
.section {
    padding: 5rem 0;
}
.section--tight { padding: 3.5rem 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--charcoal); color: var(--cream); }
.section--dark a { color: var(--gold-lt); }
.section--dark .section__title { color: #fff; }

.section__eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: .8rem;
}
.section__title {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    color: var(--charcoal);
    margin: 0 0 .75rem;
    font-weight: 500;
    letter-spacing: -.005em;
}
.section__title em {
    font-style: italic; color: var(--terracotta);
}
.section__intro {
    max-width: 60ch;
    color: var(--ink-mute);
    margin: 0 0 3rem;
    font-size: 1.05rem;
}
.section__header--center {
    text-align: center;
}
.section__header--center .section__intro { margin-inline: auto; }

/* ---------- Category cards (homepage) ---------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 880px) {
    .categories-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.cat-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--olive-dk);
    color: var(--cream);
}
.cat-card__img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .8s var(--ease);
}
.cat-card:hover .cat-card__img { transform: scale(1.05); }
.cat-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(44,36,22,0) 30%, rgba(44,36,22,.85) 100%);
}
.cat-card__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 2rem 1.75rem;
    z-index: 2;
}
.cat-card__title {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: #fff;
    margin: 0 0 .4rem;
    font-weight: 500;
    letter-spacing: .01em;
}
.cat-card__blurb {
    font-size: .92rem;
    color: rgba(245, 240, 232, .85);
    margin: 0 0 1rem;
    max-width: 34ch;
}
.cat-card__cta {
    font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-lt);
    display: inline-flex; align-items: center; gap: .5rem;
}
.cat-card__cta::after {
    content: '→'; transition: transform var(--dur) var(--ease);
}
.cat-card:hover .cat-card__cta::after { transform: translateX(4px); }
.cat-card:hover { color: var(--cream); }

/* ---------- Product cards ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
}
@media (max-width: 1080px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }
@media (max-width: 480px)  {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem .75rem; }
    .p-card__title { font-size: 1.1rem; }
    .p-card__cat { font-size: .62rem; letter-spacing: .16em; margin-top: .75rem; }
    .p-card__meta { font-size: .85rem; }
}

.p-card {
    background: transparent;
    display: flex; flex-direction: column;
}
.p-card__img-wrap {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
    border-radius: var(--radius);
    position: relative;
}
.p-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.p-card:hover .p-card__img { transform: scale(1.04); }
.p-card__cat {
    display: none;
    font-size: .7rem; letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 1rem 0 .4rem;
}
.p-card__title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--charcoal);
    margin: 0 0 .5rem;
    font-weight: 500;
}
.p-card__title a { color: inherit; }
.p-card__title a:hover { color: var(--olive-dk); }
.p-card__meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    margin-top: auto;
    padding-top: .75rem;
}
.p-card__price {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--olive-dk);
    font-weight: 500;
    line-height: 1.2;
}
.p-card__price--inquire {
    font-family: var(--sans);
    font-size: .68rem;
    color: var(--ink-mute);
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
}
.p-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .5rem .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    background: #fff;
    transition: all var(--dur) var(--ease);
}
.p-card__cta:hover {
    background: var(--olive-dk);
    border-color: var(--olive-dk);
    color: var(--cream);
}
.p-card__cta::after { content: ' →'; }

/* ---------- Values / three pillars ---------- */
.pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; gap: 2.5rem; } }
.pillar__icon {
    width: 46px; height: 46px; margin-bottom: 1.25rem;
    color: var(--terracotta);
}
.pillar__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 0 0 .6rem;
    font-weight: 500;
}
.pillar__body {
    color: var(--ink-mute);
    font-size: .98rem;
    margin: 0;
}

/* ---------- Story / feature block (image + text) ---------- */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
@media (max-width: 880px) {
    .feature { grid-template-columns: 1fr; gap: 2rem; }
    .feature--reverse { direction: ltr; }
}
.feature__img {
    aspect-ratio: 4 / 5;
    background-size: cover; background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.feature__title {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    color: var(--charcoal);
    margin: 0 0 1rem;
    font-weight: 500;
    line-height: 1.15;
}
.feature__title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.feature__lead {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--olive-dk);
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 1.25rem;
}
.feature__body p { color: var(--ink-mute); margin: 0 0 1rem; }
.feature__actions { margin-top: 1.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 640px) {
    .feature__actions {
        flex-wrap: nowrap;
        gap: .6rem;
        align-items: stretch;
    }
    .feature__actions .btn {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        padding: 12px 10px;
        font-size: .72rem;
        letter-spacing: .08em;
    }
}

/* ---------- Contact bar strip ---------- */
.contactbar {
    background: var(--olive-dk);
    color: var(--cream);
    padding: 2rem 0;
    text-align: center;
}
.contactbar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
}
@media (max-width: 780px) { .contactbar__grid { grid-template-columns: 1fr; gap: 1rem; } }
.contactbar__item {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem;
    font-size: .95rem;
}
.contactbar__item a { color: var(--cream); }
.contactbar__item a:hover { color: var(--gold-lt); }
.contactbar__icon {
    width: 22px; height: 22px; color: var(--gold-lt);
    flex-shrink: 0;
}

/* ---------- Newsletter ---------- */
.newsletter {
    background: var(--cream);
    padding: 4rem 0;
    border-top: 1px solid var(--line);
}
.newsletter__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 880px) { .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; } }
.newsletter h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--charcoal); margin: 0 0 .5rem;
}
.newsletter p { color: var(--ink-mute); margin: 0; }
.newsletter__form {
    display: flex;
    gap: .5rem;
    width: 100%;
    min-width: 0;
}
.newsletter__form input {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font: inherit;
    color: var(--ink);
}
.newsletter__form input:focus {
    outline: 2px solid var(--olive-lt); outline-offset: 1px; border-color: var(--olive-lt);
}
.newsletter__form button {
    flex: 0 0 auto;
    background: var(--olive-dk);
    color: var(--cream);
    border: 0;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
    transition: background var(--dur) var(--ease);
    white-space: nowrap;
}
.newsletter__form button:hover { background: var(--charcoal); }
@media (max-width: 640px) {
    .newsletter { padding: 3rem 0; }
    .newsletter__inner { gap: 1.25rem; max-width: 100%; }
    .newsletter__text { max-width: 100%; }
    .newsletter__form {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter__form input,
    .newsletter__form button {
        width: 100%;
        flex: none;
    }
    .newsletter__form button {
        padding: 14px 18px;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(245, 240, 232, .75);
    padding: 4rem 0 0;
}
.site-footer a { color: rgba(245, 240, 232, .82); }
.site-footer a:hover { color: var(--gold-lt); }
.site-footer__grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.brand--footer { display: inline-flex; align-items: baseline; }
.brand--footer .brand__folk,
.brand--footer .brand__lore { color: var(--cream); font-size: 1.4rem; }
.brand--footer .brand__tag { color: var(--gold-lt); }
.site-footer__tagline {
    margin: 1rem 0 1.5rem;
    max-width: 32ch;
    font-style: italic;
    color: rgba(245, 240, 232, .65);
}
.site-footer__h {
    font-family: var(--serif);
    color: var(--cream);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}
.site-footer__links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .55rem;
    font-size: .93rem;
}
.site-footer__address {
    font-style: normal;
    line-height: 1.7;
    font-size: .93rem;
    margin: 0 0 1rem;
}
.site-footer__contact { font-size: .93rem; margin: 0; }
.socials {
    display: flex; gap: .75rem; margin-top: 1rem;
}
.socials a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(245, 240, 232, .25);
    border-radius: 50%;
    color: var(--cream);
    transition: all var(--dur) var(--ease);
}
.socials a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.site-footer__bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(245, 240, 232, .1);
}
.site-footer__bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .82rem;
    color: rgba(245, 240, 232, .55);
    flex-wrap: wrap; gap: 1rem;
}
.credit { margin: 0; }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; right: 20px; bottom: 20px;
    background: #25D366; color: #fff;
    padding: 14px 20px 14px 16px;
    border-radius: 50px;
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 500; font-size: .9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35), 0 2px 6px rgba(0,0,0,.15);
    z-index: 50;
    transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
@media (max-width: 640px) {
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
}

/* =====================================================
   Page: Shop / Category  — product listing
   ===================================================== */
.page-hero {
    background: var(--cream);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
}
.page-hero__eyebrow {
    font-size: .78rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: block; margin-bottom: 1rem;
}
.page-hero__title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin: 0 0 1rem; font-weight: 500;
    line-height: 1.1;
}
.page-hero__title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.page-hero__lead {
    max-width: 58ch; margin: 0 auto;
    color: var(--ink-mute);
    font-size: 1.08rem;
}

/* Category filter chips (Shop page) */
.cat-filter {
    display: flex;
    gap: .5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 2rem 0 3.5rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .25rem 0;
}
.cat-filter::-webkit-scrollbar { display: none; }
.cat-filter a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 8px 20px;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink); font-weight: 500;
    background: #fff;
    transition: all var(--dur) var(--ease);
}
.cat-filter a:hover, .cat-filter a.is-active {
    background: var(--olive-dk); color: var(--cream); border-color: var(--olive-dk);
}
@media (min-width: 900px) {
    .cat-filter { justify-content: center; }
}
@media (max-width: 640px) {
    .cat-filter {
        margin-left: calc(-1 * var(--wrap-pad));
        margin-right: calc(-1 * var(--wrap-pad));
        padding-left: var(--wrap-pad);
        padding-right: var(--wrap-pad);
    }
    .cat-filter a {
        padding: 10px 16px;
        font-size: .72rem;
    }
}

/* =====================================================
   Page: Product single
   ===================================================== */
.product {
    padding: 3rem 0 5rem;
}
.product__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
@media (max-width: 900px) { .product__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.product__gallery { }
.product__main-img {
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.product__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs {
    margin-top: 1rem;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.product__thumbs img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--cream);
    cursor: pointer;
    transition: opacity var(--dur) var(--ease);
    opacity: .75;
}
.product__thumbs img:hover, .product__thumbs img.is-active { opacity: 1; }

.product__breadcrumb {
    font-size: .8rem;
    color: var(--ink-mute);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.product__breadcrumb a:hover { color: var(--terracotta); }
.product__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    color: var(--charcoal);
    margin: 0 0 1rem;
    font-weight: 500;
    line-height: 1.1;
}
.product__price {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--olive-dk);
    margin: 0 0 1.5rem;
}
.product__price--inquire {
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--ink-mute);
    font-style: italic;
}
.product__description {
    color: var(--ink);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.75rem;
}
.product__description p { margin: 0 0 1rem; }
.product__description ol, .product__description ul {
    padding-left: 1.25rem; margin: 0 0 1rem;
}
.product__description li { margin-bottom: .35rem; }
.product__actions {
    display: flex; gap: .75rem; flex-wrap: wrap;
    margin-bottom: 2rem;
}
@media (max-width: 640px) {
    .product__actions {
        flex-wrap: nowrap;
        gap: .5rem;
        align-items: stretch;
    }
    .product__actions .btn {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        padding: 12px 10px;
        font-size: .68rem;
        letter-spacing: .08em;
    }
}

.product__meta {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.product__meta dl {
    display: grid; grid-template-columns: max-content 1fr; gap: .6rem 1.5rem;
    margin: 0;
}
.product__meta dt {
    font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 500;
}
.product__meta dd { margin: 0; color: var(--ink); }

.nutrition {
    background: var(--cream);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}
.nutrition h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--charcoal); margin: 0 0 1rem;
    font-weight: 500;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--line);
}
.nutrition__table {
    width: 100%; border-collapse: collapse; font-size: .92rem;
}
.nutrition__table th,
.nutrition__table td {
    text-align: left;
    padding: .55rem 0;
    border-bottom: 1px solid var(--line);
}
.nutrition__table tr:last-child th,
.nutrition__table tr:last-child td { border-bottom: 0; }
.nutrition__table th {
    font-weight: 500;
    color: var(--ink); font-size: .85rem;
    letter-spacing: .04em;
    text-transform: capitalize;
}
.nutrition__table td {
    text-align: right;
    color: var(--olive-dk);
    font-weight: 500;
}

/* =====================================================
   Page: About / static content pages
   ===================================================== */
.prose {
    max-width: 68ch; margin-inline: auto;
    color: var(--ink); font-size: 1.05rem; line-height: 1.8;
}
.prose h2, .prose h3 {
    font-family: var(--serif);
    color: var(--charcoal); font-weight: 500;
    line-height: 1.2;
    margin-top: 2.5rem; margin-bottom: .75rem;
}
.prose h2 { font-size: 1.85rem; }
.prose h3 { font-size: 1.45rem; }
.prose p { margin: 0 0 1.25rem; }
.prose blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    background: var(--cream);
    border-left: 3px solid var(--terracotta);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--olive-dk);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p { margin: 0; }
.prose img { margin: 2rem 0; border-radius: var(--radius-lg); }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.prose li { margin-bottom: .5rem; }

/* Menu-page style boards */
.menu-board {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem;
    margin-top: 2.5rem;
}
@media (max-width: 780px) { .menu-board { grid-template-columns: 1fr; gap: 2rem; } }
.menu-section {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.menu-section__title {
    font-family: var(--serif);
    color: var(--charcoal);
    font-size: 1.5rem;
    margin: 0 0 .3rem;
    font-weight: 500;
}
.menu-section__blurb {
    color: var(--ink-mute); font-style: italic;
    font-size: .95rem; margin: 0 0 1.5rem;
    padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.menu-item {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px dashed var(--line-soft);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-weight: 500; color: var(--ink); margin: 0 0 .2rem; }
.menu-item__desc { font-size: .88rem; color: var(--ink-mute); margin: 0; }
.menu-item__price {
    color: var(--olive-dk); font-weight: 500; font-family: var(--serif);
    font-size: 1.1rem; white-space: nowrap;
}

/* Locations list */
.loc-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 780px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
}
.loc-card__img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.loc-card__body { padding: 1.75rem; }
.loc-card__eyebrow { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--terracotta); margin-bottom: .4rem; }
.loc-card__title { font-family: var(--serif); font-size: 1.5rem; color: var(--charcoal); margin: 0 0 .75rem; font-weight: 500; }
.loc-card__meta { font-size: .93rem; color: var(--ink); line-height: 1.7; margin: 0; }
.loc-card__meta strong { color: var(--charcoal); }

/* Contact page */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h3 {
    font-family: var(--serif); font-size: 1.4rem; margin: 0 0 .5rem;
    color: var(--charcoal); font-weight: 500;
}
.contact-info__block {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}
.contact-info__block:last-child { border-bottom: 0; }
.contact-info__block p { margin: 0; color: var(--ink); line-height: 1.7; }

.contact-form label {
    display: block; margin-bottom: 1rem;
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: .4rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font: inherit;
    color: var(--ink);
    text-transform: none; letter-spacing: normal;
    font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--olive-lt); outline-offset: 1px; border-color: var(--olive-lt);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: .5rem; }
.form-note {
    background: var(--cream);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--terracotta);
    font-size: .9rem; color: var(--ink);
    margin-bottom: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Blog list */
.blog-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--ink-mute);
    font-style: italic;
    font-size: 1.05rem;
}
.blog-empty h3 {
    font-family: var(--serif); color: var(--charcoal); font-size: 1.5rem; font-style: normal;
    margin-bottom: 1rem;
}

/* 404 */
.err {
    text-align: center; padding: 6rem 0;
}
.err h1 { font-family: var(--serif); font-size: 4rem; color: var(--terracotta); margin: 0 0 1rem; font-weight: 500; }
.err p { color: var(--ink-mute); margin-bottom: 2rem; }

/* Utilities */
.center { text-align: center; }
.mt-4 { margin-top: 4rem; }
.mt-2 { margin-top: 2rem; }
.mb-4 { margin-bottom: 4rem; }

@media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .hero { min-height: 68vh; }
    .hero__inner { padding: 4rem 0 3rem; max-width: 100%; }
    .hero__ctas {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        width: 100%;
        max-width: 100%;
    }
    .hero__ctas .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 15px 18px;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
    }
    .btn { white-space: normal; }
    .wrap { max-width: 100%; }
    .site-header__inner { gap: 1rem; min-width: 0; }
    .brand { min-width: 0; }
    .wa-float { right: 14px; bottom: 14px; }
    :root { --wrap-pad: 18px; }
}
