.food-paths {
    max-width: 1500px;
    margin: 0 auto;
    padding: 72px 32px;
    color: #30251f;
}

.food-paths__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
    gap: 40px;
    align-items: end;
    margin-bottom: 30px;
}

.food-paths__heading span {
    color: #975a37;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.food-paths__heading h2 {
    margin: 8px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.food-paths__heading p {
    margin: 0;
    color: #71635b;
    line-height: 1.7;
}

.food-paths__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.food-path-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 20px;
    background: #eee4d8;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(62, 43, 31, .12);
}

.food-path-card__image,
.food-path-card__image::after {
    position: absolute;
    inset: 0;
}

.food-path-card__image::after {
    content: "";
    background: linear-gradient(180deg, rgba(35, 26, 21, .04) 30%, rgba(35, 26, 21, .88) 100%);
}

.food-path-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.food-path-card:hover .food-path-card__image img {
    transform: scale(1.045);
}

.food-path-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 24px;
}

.food-path-card__content small {
    display: block;
    margin-bottom: 7px;
    color: #f2c9a9;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.food-path-card__content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.65rem;
}

.food-path-card__content span {
    font-size: .8rem;
    font-weight: 750;
}

.food-path-card__content i {
    margin-left: 5px;
}

.catalogue-shell + .food-paths,
.catalogue-shell .food-paths {
    padding-top: 0;
}

.food-collection-hero {
    display: grid;
    min-height: 620px;
    grid-template-columns: 1.05fr .95fr;
    background: #513225;
}

.food-collection-hero__content {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 92px clamp(30px, 7vw, 110px);
    color: #fff;
}

.food-collection-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 42px;
    color: #f0d8c6;
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
}

.food-collection-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 7vw, 6.8rem);
    line-height: .95;
}

.food-collection-hero__content > p {
    max-width: 620px;
    margin: 24px 0 34px;
    color: #eadfd7;
    font-size: 1.05rem;
    line-height: 1.75;
}

.food-collection-hero__image {
    display: flex;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: #eee2d4;
}

.food-collection-hero__image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.food-collection-intro,
.food-collection-products,
.food-related {
    max-width: 1420px;
    margin: 0 auto;
    padding: 90px 32px;
}

.food-collection-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
}

.food-collection-intro h2,
.food-collection-products__heading h2,
.food-related h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.food-collection-intro > p {
    color: #71635b;
    line-height: 1.8;
}

.food-collection-guide {
    display: grid;
    max-width: 1356px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    padding: 0 0 72px;
    border-top: 1px solid #e6d9cb;
}

.food-collection-guide article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 30px;
    border-right: 1px solid #e6d9cb;
}

.food-collection-guide article:last-child {
    border-right: 0;
}

.food-collection-guide span {
    color: #975a37;
    font-size: .72rem;
    font-weight: 850;
}

.food-collection-guide p {
    color: #514740;
    line-height: 1.65;
}

.food-collection-products {
    max-width: 1500px;
    background: #fff;
}

.food-collection-products__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 450px);
    gap: 40px;
    align-items: end;
    margin-bottom: 42px;
}

.food-collection-products__heading > p {
    color: #71635b;
    line-height: 1.7;
}

.food-product-summary {
    min-height: 66px;
    margin: 9px 0 0;
    color: #716963;
    font-size: .8rem;
    line-height: 1.5;
}

.food-related {
    padding-top: 40px;
    padding-bottom: 110px;
}

.food-related__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.food-related__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border: 1px solid #d8c5b5;
    border-radius: 999px;
    color: #513225;
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 980px) {
    .food-paths__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .food-collection-hero {
        grid-template-columns: 1fr;
    }

    .food-collection-hero__content {
        max-width: none;
    }

    .food-collection-hero__image {
        min-height: 420px;
    }
}

@media (max-width: 680px) {
    .food-paths {
        padding: 58px 20px;
    }

    .food-paths__heading,
    .food-collection-intro,
    .food-collection-products__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .food-paths__grid {
        grid-template-columns: 1fr;
    }

    .food-path-card {
        min-height: 310px;
    }

    .food-collection-hero {
        min-height: auto;
    }

    .food-collection-hero__content {
        padding: 64px 20px 58px;
    }

    .food-collection-back {
        margin-bottom: 30px;
    }

    .food-collection-hero h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .food-collection-hero__image {
        min-height: 330px;
        padding: 28px;
    }

    .food-collection-intro,
    .food-collection-products,
    .food-related {
        padding: 72px 20px;
    }

    .food-collection-guide {
        display: block;
        margin: 0 20px;
    }

    .food-collection-guide article {
        border-right: 0;
        border-bottom: 1px solid #e6d9cb;
    }

    .food-collection-guide article:last-child {
        border-bottom: 0;
    }

    .food-product-summary {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .food-path-card__image img {
        transition: none;
    }
}

.product-comparisons {
    max-width: 1500px;
    margin: 0 auto;
    padding: 34px 32px 90px;
}

.product-comparisons__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 470px);
    gap: 40px;
    align-items: end;
    margin-bottom: 36px;
}

.product-comparisons__heading h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.product-comparisons__heading > p {
    color: #71635b;
    line-height: 1.7;
}

.comparison-panel {
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid #dfd2c5;
    border-radius: 18px;
    background: #fff;
}

.comparison-panel > header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border-bottom: 1px solid #e8ddd2;
    background: #f8f2ea;
}

.comparison-panel h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
}

.comparison-panel header p {
    max-width: 520px;
    color: #71635b;
    font-size: .82rem;
    line-height: 1.5;
}

.comparison-table-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
}

.comparison-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    color: #403832;
    font-size: .84rem;
}

.comparison-table th,
.comparison-table td {
    padding: 17px 18px;
    border-bottom: 1px solid #eee5dc;
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    color: #766960;
    background: #fffdf9;
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody th {
    min-width: 230px;
}

.comparison-table tbody th a {
    color: #30251f;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
}

.comparison-table tbody th small {
    display: block;
    margin-top: 5px;
    color: #975a37;
    font-size: .8rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7c482c;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 680px) {
    .product-comparisons {
        padding: 20px 20px 72px;
    }

    .product-comparisons__heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-panel > header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .comparison-table-scroll {
        background:
            linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0)),
            linear-gradient(to left, #fff 30%, rgba(255, 255, 255, 0)),
            linear-gradient(to right, rgba(58, 39, 27, .12), transparent 70%),
            linear-gradient(to left, rgba(58, 39, 27, .12), transparent 70%);
        background-attachment: local, local, scroll, scroll;
        background-position: left center, right center, left center, right center;
        background-repeat: no-repeat;
        background-size: 36px 100%, 36px 100%, 14px 100%, 14px 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px;
    }
}
