@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700&family=Lora:ital,wght@0,500;0,600;1,500&display=swap');


/* ========================================
   ROOT / GLOBAL
======================================== */

:root {
    --ink: #2f251d;
    --muted: #6f6258;
    --cream: #f7f1e6;
    --paper: #fffaf1;
    --red: #8c2f2d;
    --red-dark: #67201f;
    --blue: #244d79;
    --gold: #d7ad39;
    --line: #decdb4;
    --shadow: 0 14px 36px rgba(53, 36, 22, .12);
    --radius: 18px;
    --max: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    color: var(--ink);
    background: #f3eadc;
    font-family: 'Libre Franklin', Arial, sans-serif;
    line-height: 1.65;
}


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


a {
    color: inherit;
}


/* ========================================
   ACCESSIBILITY
======================================== */

.skip-link {
    position: absolute;
    left: -9999px;
}


.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: white;
    padding: .7rem 1rem;
    z-index: 9999;
}


/* ========================================
   HEADER / NAVIGATION
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 241, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}


.nav-wrap {
    max-width: var(--max);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: .55rem 1.2rem;
}


.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
}


.brand img {
    width: 74px;
    height: 58px;
    object-fit: contain;
}


.brand span {
    font-size: 1.06rem;
    white-space: nowrap;
}


.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .25rem;
}


.nav a {
    text-decoration: none;
    font-size: .93rem;
    font-weight: 600;
    padding: .7rem .72rem;
    border-radius: 10px;
}


.nav a:hover,
.nav a[aria-current="page"] {
    background: #efe3d1;
}


.nav .order {
    background: var(--red);
    color: white;
    margin-left: .4rem;
}


.nav .order:hover {
    background: var(--red-dark);
}


.menu-btn {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: .55rem .75rem;
    font-weight: 700;
}


/* ========================================
   HERO
======================================== */

.hero {
    max-width: var(--max);
    margin: 2rem auto;
    padding: 0 1.2rem;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 2.3rem;
}


.eyebrow {
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .76rem;
    font-weight: 700;
    color: var(--red);
}


h1,
h2,
h3 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.18;
    margin-top: 0;
}


h1 {
    font-size: clamp(2.55rem, 6vw, 5.1rem);
    margin-bottom: 1rem;
}


h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}


h3 {
    font-size: 1.28rem;
}


.lead {
    font-size: 1.14rem;
    color: var(--muted);
    max-width: 670px;
}


.hero-img {
    border-radius: 26px;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
}


/* ========================================
   BUTTONS
======================================== */

.cta-row {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: .82rem 1.05rem;
    font-weight: 700;
    border: 2px solid var(--red);
}


.btn.primary {
    background: var(--red);
    color: white;
}


.btn.primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}


.btn.secondary {
    background: transparent;
    color: var(--red);
}


/* ========================================
   FRESH COOKING ALERT
======================================== */

.fresh-alert {
    max-width: var(--max);
    margin: 1.25rem auto 1.5rem;
    padding: 0 1.2rem;
}


.fresh-alert-inner {
    background: #f7e6b6;
    border: 2px solid #d7ad39;
    border-radius: 14px;
    padding: 1rem 1.3rem;
    text-align: left;
    box-shadow: 0 6px 18px rgba(53, 36, 22, 0.08);
}


.fresh-alert-inner strong {
    color: var(--red);
    font-size: 1.08rem;
    margin-right: .35rem;
}


/* ========================================
   TRUST POINTS
======================================== */

.trust {
    max-width: var(--max);
    margin: 0 auto 2.5rem;
    padding: 0 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}


.trust div {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    padding: 4.3rem 1.2rem;
}


.section.alt {
    background: var(--paper);
    border-block: 1px solid var(--line);
}


.inner {
    max-width: var(--max);
    margin: auto;
}


.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


.section-head p {
    color: var(--muted);
    max-width: 600px;
    margin: 0;
}


/* ========================================
   CARDS
======================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}


.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(53, 36, 22, .07);
}


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


.card-body {
    padding: 1.15rem;
}


.card-body p {
    margin-bottom: 0;
    color: var(--muted);
}


.kicker {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--red);
    font-weight: 700;
}


/* ========================================
   STORY
======================================== */

.story-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}


.story-split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* ========================================
   NOTICE
======================================== */

.notice {
    background: #f7e6b6;
    border: 1px solid #d8bb64;
    border-radius: 14px;
    padding: 1rem 1.2rem;
}


/* ========================================
   LOCATIONS
======================================== */

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


.location {
    background: white;
    border: 1px solid var(--line);
    padding: 1.1rem;
    border-radius: 14px;
}


.location h3 {
    margin-bottom: .3rem;
}


.location p {
    margin: .25rem 0;
    color: var(--muted);
}


.location .status {
    font-size: .8rem;
    font-weight: 700;
    color: var(--red);
}


/* ========================================
   MAIN LOCATION
======================================== */

.main-location {
    max-width: 420px;
    margin-bottom: 2rem;
}


/* ========================================
   LOCAL RETAILER MARQUEE
======================================== */

.retailer-title {
    margin: 2rem 0 1rem;
}


.retailer-marquee {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: .3rem 0 1rem;
}


.retailer-track {
    display: flex;
    width: max-content;
    gap: 1rem;

    animation-name: retailer-scroll;
    animation-duration: 38s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.retailer-track .location {
    width: 300px;
    flex: 0 0 auto;
}


@keyframes retailer-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - .5rem));
    }

}


.retailer-marquee:hover .retailer-track {
    animation-play-state: paused;
}


/* ========================================
   PRODUCTS
======================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}


.product {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}


.product img {
    height: 100%;
    min-height: 180px;
    width: 100%;
    object-fit: cover;
}


.product-copy {
    padding: 1rem 1rem 1rem 0;
}


.product-copy p {
    color: var(--muted);
    margin: .35rem 0;
}


.meta {
    font-size: .88rem;
    font-weight: 700;
    color: var(--red);
}


/* ========================================
   PROSE / CONTENT
======================================== */

.prose {
    max-width: 850px;
    margin: auto;
}


.prose p {
    color: #51473f;
}


.prose blockquote {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
    padding: .4rem 0 .4rem 1.2rem;
}


/* ========================================
   TIMELINE
======================================== */

.timeline {
    border-left: 2px solid var(--line);
    padding-left: 1.3rem;
}


.timeline article {
    margin-bottom: 1.5rem;
}


.timeline strong {
    color: var(--red);
}


/* ========================================
   SUB PAGE HERO
======================================== */

.subhero {
    max-width: var(--max);
    margin: auto;
    padding: 3.3rem 1.2rem 2rem;
}


.subhero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}


/* ========================================
   LISTS
======================================== */

.list-columns {
    columns: 2;
    column-gap: 2.5rem;
}


.list-columns li {
    break-inside: avoid;
    margin: .35rem 0;
}


.legal-note {
    font-size: .85rem;
    color: var(--muted);
}


/* ========================================
   FOOTER
======================================== */

.footer {
    background: #2f251d;
    color: #f5ebdc;
    padding: 3rem 1.2rem;
}


.footer-inner {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
}


.footer a {
    color: #fff;
    text-decoration: none;
}


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


.footer small {
    color: #d8cabb;
}


/* ========================================
   MOBILE ORDER BUTTON
======================================== */

.mobile-order {
    display: none;
    padding: .68rem .9rem;
    font-size: .92rem;
}
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .menu-btn {
        display: block;
    }


    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 1rem 1.2rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }


    .nav.open {
        display: flex;
    }


    .nav a {
        padding: .75rem 1rem;
    }


    .nav .order {
        margin-left: 0;
        text-align: center;
    }


    .hero,
    .story-split {
        grid-template-columns: 1fr;
    }


    .hero {
        margin-top: 1rem;
    }


    .hero-img {
        order: -1;
    }


    .trust {
        grid-template-columns: repeat(2, 1fr);
    }


    .cards,
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }


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


    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }


    .mobile-order {
        display: block;
        position: fixed;
        bottom: 14px;
        right: 14px;
        z-index: 40;
        background: var(--red);
        color: white;
        text-decoration: none;
        padding: .78rem 1rem;
        border-radius: 999px;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .brand span {
        display: none;
    }


    .brand img {
        width: 62px;
        height: 50px;
    }


    .cards,
    .location-grid,
    .trust {
        grid-template-columns: 1fr;
    }


    .section {
        padding: 3.2rem 1rem;
    }


    .hero {
        padding: 0 1rem;
        gap: 1.2rem;
    }


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


    .product img {
        min-height: 220px;
    }


    .product-copy {
        padding: 1rem;
    }


    .footer-inner {
        grid-template-columns: 1fr;
    }


    .section-head {
        display: block;
    }


    .list-columns {
        columns: 1;
    }


    .cta-row .btn {
        width: 100%;
    }


    /* Fresh cooking alert */

    .fresh-alert {
        margin-top: 1rem;
        padding: 0 1rem;
    }


    .fresh-alert-inner {
        text-align: left;
        padding: .9rem 1rem;
    }


    .fresh-alert-inner strong {
        display: block;
        margin-bottom: .3rem;
    }


    /* Retailer scrolling */

    .retailer-track {
        animation-duration: 42s;
    }


    .retailer-track .location {
        width: 270px;
    }

}

.fresh-line {
    margin: 0;
    text-align: left;
}

.fresh-line + .fresh-line {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(140, 47, 45, 0.15);
}

/* ========================================
   REDUCED MOTION / ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {

    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }


    .retailer-track {
        animation: none;
    }


    .retailer-marquee {
        overflow-x: auto;
    }

}



/* ========================================
   FINAL MOBILE LAYOUT FIX
======================================== */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* HEADER */

    .nav-wrap {
        position: relative;
        width: 100%;
        padding: .55rem 1rem;
    }

    .brand {
        display: flex;
    }

    .brand img {
        width: 62px;
        height: 50px;
    }

    .brand span {
        display: none;
    }

    .menu-btn {
        display: block;
        margin-left: auto;
    }


    /* Hide desktop navigation until Menu is pressed */

    .nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--paper);
        padding: .8rem 1rem 1rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        z-index: 100;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: .8rem 1rem;
    }

    .nav .order {
        margin-left: 0;
        text-align: center;
    }


    /* HERO */

    .hero {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        margin: 1rem auto 1.5rem;
        padding: 0 1rem;
        gap: 1.25rem;
    }

    .hero-img {
        order: -1;
        width: 100%;
        height: 300px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center 68%;
        border-radius: 18px;
    }

    h1 {
        font-size: clamp(2.1rem, 10.5vw, 2.8rem);
        line-height: 1.08;
    }

    .lead {
        font-size: 1.02rem;
    }


    /* BUTTONS */

    .cta-row .btn {
        width: 100%;
    }


    /* FRESH NOTICE */

    .fresh-alert {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .fresh-alert-inner {
        text-align: left;
        font-size: .94rem;
        line-height: 1.55;
    }


    /* RETAILERS */

    .retailer-marquee {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .retailer-track .location {
        width: 270px;
        flex: 0 0 270px;
    }


    /* FOOTER */

    .footer {
        padding-bottom: 3rem;
    }

}