/* Bishoprise — UI aligned with Cranswick plc (white header, gold accent, photo-led tiles) */
:root {
    --cw-gold: #c59d5f;
    --cw-gold-hover: #b68b4f;
    --cw-charcoal: #2f2f2f;
    --cw-charcoal-deep: #252525;
    --cw-gray: #666666;
    --cw-gray-light: #ededed;
    --cw-white: #ffffff;
    --cw-header-h: 72px;
    --font-heading: "Montserrat", system-ui, sans-serif;
    --font-body: "Open Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cw-charcoal);
    background: var(--cw-white);
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cw-gold);
}

a:hover {
    color: var(--cw-gold-hover);
}

.sr-only,
.cw-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--cw-charcoal);
    color: var(--cw-white);
}

.skip-link:focus {
    left: 1rem;
}

/* ----- Header (Cranswick: white bar, gold accents, slim) ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--cw-white);
    border-bottom: 1px solid rgba(47, 47, 47, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-height: var(--cw-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 961px) {
    .site-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--cw-charcoal);
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle:hover {
    background: rgba(47, 47, 47, 0.06);
}

.nav-toggle-bar {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cw-charcoal);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--cw-charcoal);
    transition: transform 0.2s ease;
}

.nav-toggle-bar::before {
    top: -7px;
}

.nav-toggle-bar::after {
    top: 7px;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.75rem;
    align-items: center;
    justify-content: center;
}

.site-nav a {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cw-gray);
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--cw-charcoal);
    border-bottom-color: var(--cw-gold);
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: var(--cw-header-h);
        bottom: 0;
        background: rgba(47, 47, 47, 0.97);
        padding: 1.5rem 1.5rem 2rem;
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .site-nav a {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.88);
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        color: var(--cw-white);
        border-bottom-color: var(--cw-gold);
    }
}

/* ----- Home image slider (Cranswick-style banner) ----- */
.cw-slider {
    position: relative;
    background: var(--cw-charcoal-deep);
}

.cw-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.cw-slider__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cw-slider.is-paused .cw-slider__track {
    transition: none;
}

.cw-slide {
    position: relative;
    flex-shrink: 0;
    min-height: min(58vh, 580px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--cw-charcoal-deep);
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
}

.cw-slide__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.2) 0%, rgba(20, 20, 20, 0.75) 100%);
    pointer-events: none;
}

.cw-slide__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2.5rem 1.5rem 3.5rem;
}

.cw-slide__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 4.2vw, 2.65rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cw-white);
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.cw-slide__sub {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.cw-slide__cta {
    margin: 0;
}

.cw-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(47, 47, 47, 0.45);
    color: var(--cw-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.cw-slider__arrow:hover {
    background: rgba(197, 157, 95, 0.35);
    border-color: var(--cw-gold);
    color: var(--cw-white);
}

.cw-slider__arrow:focus-visible {
    outline: 2px solid var(--cw-gold);
    outline-offset: 3px;
}

.cw-slider__arrow--prev {
    left: clamp(0.75rem, 3vw, 2rem);
}

.cw-slider__arrow--next {
    right: clamp(0.75rem, 3vw, 2rem);
}

@media (max-width: 640px) {
    .cw-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .cw-slider__arrow--prev {
        left: 0.5rem;
    }

    .cw-slider__arrow--next {
        right: 0.5rem;
    }
}

.cw-slider__dots {
    position: absolute;
    bottom: clamp(1rem, 3vw, 1.65rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    z-index: 3;
}

.cw-slider__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cw-slider__dot:hover {
    border-color: var(--cw-gold);
}

.cw-slider__dot.is-active {
    background: var(--cw-gold);
    border-color: var(--cw-gold);
    transform: scale(1.15);
}

.cw-slider__dot:focus-visible {
    outline: 2px solid var(--cw-gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .cw-slider__track {
        transition-duration: 0.01ms;
    }
}

/* ----- Full-bleed hero ----- */
.cw-hero {
    position: relative;
    min-height: min(56vh, 520px);
    display: grid;
    place-items: center;
    text-align: center;
    background-color: var(--cw-charcoal-deep);
    background-image:
        linear-gradient(180deg, rgba(37, 37, 37, 0.25) 0%, rgba(37, 37, 37, 0.65) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.cw-hero--compact {
    min-height: min(42vh, 380px);
}

.cw-hero__overlay {
    display: none;
}

.cw-hero__inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.25rem;
    max-width: 960px;
}

.cw-hero__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cw-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* Product name on category hero — slightly tighter tracking for long titles */
.cw-hero__title--product {
    letter-spacing: 0.12em;
    font-size: clamp(1.35rem, 4vw, 2.15rem);
    line-height: 1.25;
}

/* ----- Divider strip (charcoal + icon) ----- */
.cw-divider-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--cw-charcoal);
    color: var(--cw-white);
}

.cw-divider-strip__line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.cw-divider-strip__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

/* ----- Intro band ----- */
.cw-intro {
    background: var(--cw-white);
    padding: clamp(2.25rem, 5vw, 3.25rem) 1.25rem;
}

.cw-intro__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cw-intro__lead {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    line-height: 1.65;
    color: var(--cw-gray);
}

/* ----- Home: split story + highlights + featured + sustainability + CTA ----- */
.cw-home-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--cw-charcoal);
}

.cw-home-lede {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    color: var(--cw-gray);
    line-height: 1.65;
}

.cw-home-split {
    background: var(--cw-white);
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cw-home-split__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .cw-home-split__grid {
        grid-template-columns: 1fr;
    }
}

.cw-home-split__media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.cw-home-split__content {
    padding: clamp(1.75rem, 4vw, 2.75rem);
    background: var(--cw-white);
}

.cw-home-list {
    margin: 0 0 1.5rem;
    padding-left: 1.15rem;
    color: var(--cw-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cw-home-list li {
    margin-bottom: 0.65rem;
}

.cw-home-list strong {
    color: var(--cw-charcoal);
}

.cw-home-split__actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cw-home-highlights {
    background: var(--cw-gray-light);
    padding: clamp(2.25rem, 5vw, 3.5rem) 1.25rem;
}

.cw-home-highlights__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cw-home-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 800px) {
    .cw-home-highlights__grid {
        grid-template-columns: 1fr;
    }
}

.cw-highlight {
    background: var(--cw-white);
    padding: 1.65rem 1.35rem;
    border-top: 4px solid var(--cw-gold);
    border-radius: 2px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.cw-highlight__icon {
    display: block;
    font-size: 1.35rem;
    color: var(--cw-gold);
    margin-bottom: 0.65rem;
}

.cw-highlight__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.cw-highlight__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--cw-gray);
    line-height: 1.55;
}

.cw-home-featured {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    background: var(--cw-white);
}

.cw-home-featured__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cw-home-featured__intro {
    text-align: center;
    margin: -0.5rem auto 2rem;
    max-width: 640px;
    color: var(--cw-gray);
    font-size: 1rem;
    line-height: 1.55;
}

.cw-home-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 1024px) {
    .cw-home-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .cw-home-featured__grid {
        grid-template-columns: 1fr;
    }
}

.cw-home-mini-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 220px;
    padding: 1.35rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--cw-white);
    background-color: var(--cw-charcoal);
    background-image: var(--tile-image);
    background-size: cover;
    background-position: center;
}

.cw-home-mini-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(17, 17, 17, 0.88) 100%);
}

.cw-home-mini-tile__label {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.cw-home-mini-tile__cta {
    position: relative;
    z-index: 1;
    margin-top: 0.45rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

.cw-home-mini-tile:hover .cw-home-mini-tile__cta {
    color: #e6cf9f;
}

.cw-home-sustain {
    padding: clamp(2rem, 5vw, 3rem) 1.25rem;
    background: linear-gradient(180deg, #f3f3f3 0%, var(--cw-white) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cw-home-sustain__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cw-home-sustain__text {
    flex: 1 1 280px;
    max-width: 720px;
}

.cw-home-sustain__text h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.cw-home-sustain__text p {
    margin: 0;
    color: var(--cw-gray);
    font-size: 0.98rem;
    line-height: 1.6;
}

.cw-home-sustain__btn {
    flex-shrink: 0;
}

.cw-home-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.cw-home-cta-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cw-home-cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.82) 0%, rgba(37, 37, 37, 0.55) 100%);
}

.cw-home-cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.cw-home-cta-banner__inner h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-white);
}

.cw-home-cta-banner__inner p {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.55;
}

/* ----- Home pillars ----- */
.cw-band {
    background: var(--cw-gray-light);
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.cw-band__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cw-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 2rem;
    color: var(--cw-charcoal);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cw-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .cw-pillar-grid {
        grid-template-columns: 1fr;
    }
}

.cw-pillar-card {
    background: var(--cw-white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cw-pillar-card__media {
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.cw-pillar-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
}

.cw-pillar-card__body h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.cw-pillar-card__body p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--cw-gray);
    line-height: 1.55;
}

.cw-band__cta {
    margin: 2.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ----- Buttons ----- */
.cw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cw-btn--gold {
    background: var(--cw-gold);
    color: var(--cw-charcoal);
    border-color: var(--cw-gold);
}

.cw-btn--gold:hover {
    background: var(--cw-gold-hover);
    border-color: var(--cw-gold-hover);
    color: var(--cw-charcoal);
}

.cw-btn--outline {
    background: transparent;
    color: var(--cw-charcoal);
    border-color: var(--cw-charcoal);
}

.cw-btn--outline:hover {
    background: var(--cw-charcoal);
    color: var(--cw-white);
}

/* ----- Product grid (image tiles like Cranswick) ----- */
.cw-product-section {
    padding: clamp(2rem, 5vw, 3rem) 1.25rem 2.5rem;
    background: var(--cw-white);
}

.cw-product-section__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.cw-recipe-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.cw-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

@media (max-width: 1024px) {
    .cw-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cw-product-grid {
        grid-template-columns: 1fr;
    }
}

.cw-product-tile {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cw-white);
    background-color: var(--cw-charcoal);
    background-image: var(--tile-image);
    background-size: cover;
    background-position: center;
}

.cw-product-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(17, 17, 17, 0.88) 100%);
    transition: opacity 0.25s ease;
}

.cw-product-tile:hover .cw-product-tile__shade {
    opacity: 0.92;
}

.cw-product-tile__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 1;
}

.cw-product-tile__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.cw-product-tile__meta {
    margin: -0.15rem 0 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.cw-product-tile__cta {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

.cw-product-tile:hover .cw-product-tile__cta {
    color: #e0c992;
}

/* ----- Recipe / extra band ----- */
.cw-extra {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem 4rem;
    background: var(--cw-white);
}

.cw-extra__grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

@media (max-width: 720px) {
    .cw-extra__grid {
        grid-template-columns: 1fr;
    }
}

.cw-extra-tile {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cw-white);
    background-color: var(--cw-charcoal);
    background-image: var(--tile-image);
    background-size: cover;
    background-position: center;
}

.cw-extra-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(17, 17, 17, 0.82) 100%);
}

.cw-extra-tile__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.85rem;
    z-index: 1;
}

.cw-extra-tile__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.cw-extra-tile__cta {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

/* ----- Inner pages (legacy / prose) ----- */
.page-hero {
    background: var(--cw-gray-light);
    padding: 2.75rem 1.25rem 2.25rem;
    border-bottom: 3px solid var(--cw-gold);
}

.page-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.65rem;
    color: var(--cw-charcoal);
}

.page-hero p {
    margin: 0;
    color: var(--cw-gray);
    font-size: 1.02rem;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0;
    font-size: 0.82rem;
    color: var(--cw-gray);
}

.breadcrumb a {
    color: var(--cw-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--cw-gold);
    text-decoration: underline;
}

.prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3.5rem;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 2rem 0 0.75rem;
    color: var(--cw-charcoal);
}

.prose p {
    margin: 0 0 1rem;
    color: var(--cw-gray);
}

.prose .btn {
    display: inline-flex;
    margin-top: 0.5rem;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.address-block {
    background: var(--cw-white);
    padding: 1.5rem;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.address-block dt {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    color: var(--cw-charcoal);
}

.address-block dt:first-child {
    margin-top: 0;
}

.address-block dd {
    margin: 0.35rem 0 0;
    color: var(--cw-gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.35rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--cw-gold);
    background: var(--cw-gold);
    color: var(--cw-charcoal);
}

.btn:hover {
    background: var(--cw-gold-hover);
    border-color: var(--cw-gold-hover);
    color: var(--cw-charcoal);
}

.btn-primary {
    background: var(--cw-gold);
    border-color: var(--cw-gold);
    color: var(--cw-charcoal);
}

/* ----- Footer ----- */
.site-footer {
    background: var(--cw-charcoal-deep);
    color: rgba(255, 255, 255, 0.82);
    margin-top: auto;
}

.footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cw-gold), transparent);
    opacity: 0.85;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1.5rem;
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 800px) {
    .footer-inner {
        grid-template-columns: 2fr 2fr 1.2fr;
        align-items: start;
    }
}

.footer-brand strong {
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--cw-white);
}

.footer-brand p,
.footer-contact p {
    margin: 0.6rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.footer-contact a {
    color: var(--cw-gold);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: var(--cw-gold);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-base {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.5;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1;
}

/* ----- Our story page (Cranswick-style narrative) ----- */
.story-page {
    background: var(--cw-white);
}

.story-hero {
    position: relative;
    min-height: min(52vh, 480px);
    display: grid;
    place-items: center;
    text-align: center;
    background-color: #4a1520;
    background-image:
        linear-gradient(165deg, rgba(74, 21, 32, 0.92) 0%, rgba(42, 12, 18, 0.88) 45%, rgba(28, 10, 14, 0.92) 100%),
        var(--story-hero-bg);
    background-size: cover;
    background-position: center;
}

.story-hero__shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(197, 157, 95, 0.12), transparent 55%);
    pointer-events: none;
}

.story-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 8vw, 4rem) 1.25rem;
    max-width: 920px;
}

.story-hero__badge {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.story-hero__title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-white);
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.story-hero__title-line {
    display: block;
}

.story-hero__ribbon {
    margin: 1.75rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-hero__ribbon-line {
    width: min(120px, 18vw);
    height: 1px;
    background: var(--cw-gold);
    opacity: 0.95;
}

.story-hero__ribbon-text {
    font-family: var(--font-heading);
    font-size: clamp(0.68rem, 1.5vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

.story-statement {
    background: #2a2a2a;
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.story-statement__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.story-statement__lead {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.85rem);
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: var(--cw-gold);
}

.story-narrow {
    padding: clamp(2.75rem, 6vw, 4rem) 1.25rem;
    background: var(--cw-white);
}

.story-narrow--muted {
    background: var(--cw-gray-light);
}

.story-narrow__inner {
    max-width: 760px;
    margin: 0 auto;
}

.story-prose p {
    margin: 0 0 1.15rem;
    color: var(--cw-gray);
    font-size: 1.02rem;
    line-height: 1.65;
}

.story-prose p:last-child {
    margin-bottom: 0;
}

.story-chapter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--cw-charcoal);
}

.story-dropcap::first-letter {
    float: left;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 0.85;
    padding-right: 0.45rem;
    color: var(--cw-charcoal);
}

.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 380px;
}

@media (max-width: 900px) {
    .story-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .story-split--img-left .story-split__media {
        order: -1;
    }
}

.story-split__media {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.story-split__body {
    padding: clamp(2rem, 5vw, 3.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cw-white);
}

.story-split--img-right .story-split__body {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.story-split--img-left .story-split__body {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .story-split--img-right .story-split__body,
    .story-split--img-left .story-split__body {
        border: none;
    }
}

.story-split__body p {
    margin: 0 0 1rem;
    color: var(--cw-gray);
    font-size: 1rem;
    line-height: 1.65;
}

.story-split__body .story-chapter-title {
    margin-bottom: 1rem;
}

.story-checklist {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--cw-gray);
    font-size: 0.98rem;
    line-height: 1.6;
}

.story-checklist li {
    margin-bottom: 0.55rem;
}

.story-quote-band {
    background: linear-gradient(180deg, #e8e4df 0%, #ddd8d2 100%);
    padding: clamp(2.25rem, 5vw, 3.25rem) 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.story-quote-band__inner {
    max-width: 820px;
    margin: 0 auto;
}

.story-quote-band__quote {
    margin: 0;
    padding: 0;
    border: none;
}

.story-quote-band__quote p {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    color: #3d3530;
}

.story-explore {
    padding: clamp(2.75rem, 6vw, 4rem) 1.25rem 3rem;
    background: var(--cw-white);
}

.story-explore__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.story-explore__heading {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.story-explore__sub {
    margin: 0;
    font-size: 0.98rem;
    color: var(--cw-gray);
    line-height: 1.55;
}

.story-explore__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 1024px) {
    .story-explore__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .story-explore__grid {
        grid-template-columns: 1fr;
    }
}

.story-explore-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 240px;
    padding: 1.35rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--cw-white);
    background-color: var(--cw-charcoal-deep);
    background-image: var(--story-card-bg);
    background-size: cover;
    background-position: center;
}

.story-explore-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 15, 15, 0.9) 100%);
}

.story-explore-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.story-explore-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.story-explore-card__cta {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

.story-explore-card:hover .story-explore-card__cta {
    color: #e6cf9f;
}

.story-contact-cta {
    background: var(--cw-charcoal-deep);
    padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    border-top: 4px solid var(--cw-gold);
}

.story-contact-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.story-contact-cta__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-white);
}

.story-contact-cta__text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.story-contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.cw-btn--on-dark {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--cw-white);
    background: transparent;
}

.cw-btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cw-white);
    color: var(--cw-white);
}

/* ----- Recipe inspiration page ----- */
.recipe-page .recipe-breadcrumb {
    padding-bottom: 0;
}

.recipe-themes .cw-product-tile {
    min-height: 320px;
}

.recipe-themes__intro {
    text-align: center;
    max-width: 680px;
    margin: -0.35rem auto 2rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.recipe-tips {
    background: var(--cw-gray-light);
    padding: clamp(2.5rem, 6vw, 3.75rem) 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.recipe-tips__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.recipe-tips__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 800px) {
    .recipe-tips__grid {
        grid-template-columns: 1fr;
    }
}

.recipe-tip-card {
    background: var(--cw-white);
    padding: 1.5rem 1.35rem;
    border-radius: 2px;
    border-top: 4px solid var(--cw-gold);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.recipe-tip-card__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.recipe-tip-card p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.recipe-more {
    padding: 0;
}

.recipe-more__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

@media (max-width: 640px) {
    .recipe-more__grid {
        grid-template-columns: 1fr;
    }
}

.recipe-more-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 240px;
    padding: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--cw-white);
    background-color: var(--cw-charcoal-deep);
    background-image: var(--recipe-more-bg);
    background-size: cover;
    background-position: center;
}

.recipe-more-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(17, 17, 17, 0.82) 100%);
}

.recipe-more-card:hover .recipe-more-card__shade {
    opacity: 0.95;
}

.recipe-more-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.recipe-more-card__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.recipe-more-card__cta {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cw-gold);
}

.recipe-more-card:hover .recipe-more-card__cta {
    color: #e6cf9f;
}

.recipe-cta-band {
    background: linear-gradient(165deg, #3a2428 0%, var(--cw-charcoal-deep) 55%);
    padding: clamp(2.75rem, 7vw, 4rem) 1.25rem;
    border-top: 4px solid var(--cw-gold);
}

.recipe-cta-band__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.recipe-cta-band__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-white);
}

.recipe-cta-band__text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.recipe-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ----- Foodservice page ----- */
.fs-sectors {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    background: var(--cw-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fs-sectors__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fs-sectors__intro {
    text-align: center;
    max-width: 680px;
    margin: -0.35rem auto 2rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.fs-sectors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .fs-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .fs-sectors__grid {
        grid-template-columns: 1fr;
    }
}

.fs-sector-card {
    background: var(--cw-white);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.fs-sector-card__media {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.fs-sector-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
}

.fs-sector-card__title {
    margin: 0 0 0.55rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.fs-sector-card__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.fs-ranges {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fs-ranges .cw-product-tile {
    min-height: 300px;
}

.fs-ranges .recipe-themes__intro a {
    color: var(--cw-gold);
    font-weight: 600;
}

.fs-ranges .recipe-themes__intro a:hover {
    color: var(--cw-gold-hover);
}

.fs-tips {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ----- Product category page (our-food/category.php) ----- */
.category-page {
    background: var(--cw-white);
}

.category-split {
    padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    background: var(--cw-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.category-split__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

@media (max-width: 900px) {
    .category-split__inner {
        grid-template-columns: 1fr;
    }
}

.category-split__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--cw-charcoal);
}

.category-split__text {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--cw-gray);
}

.category-split__text:last-of-type {
    margin-bottom: 0;
}

.category-at-glance {
    background: var(--cw-gray-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--cw-gold);
    border-radius: 2px;
    padding: 1.5rem 1.35rem 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.category-at-glance__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.category-at-glance__list {
    margin: 0 0 1.25rem;
    padding-left: 1.15rem;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.category-at-glance__list li {
    margin-bottom: 0.45rem;
}

.category-at-glance__cta {
    margin: 0;
}

.category-benefits {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.category-supply {
    background: linear-gradient(180deg, var(--cw-white) 0%, var(--cw-gray-light) 100%);
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.category-supply__intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.category-related {
    padding: clamp(2rem, 5vw, 3rem) 1.25rem 2.5rem;
    background: var(--cw-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.category-related__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.category-related__sub {
    text-align: center;
    margin: -0.25rem auto 2rem;
    max-width: 560px;
    font-size: 0.96rem;
    color: var(--cw-gray);
    line-height: 1.55;
}

.category-related__grid .cw-product-tile {
    min-height: 260px;
}

.category-page--error .recipe-breadcrumb {
    background: var(--cw-white);
}

.category-error {
    min-height: min(55vh, 520px);
    display: grid;
    place-items: center;
    padding: 3rem 1.25rem;
    background: linear-gradient(165deg, #3a2428 0%, var(--cw-charcoal-deep) 55%);
}

.category-error__inner {
    max-width: 480px;
    text-align: center;
}

.category-error__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cw-white);
}

.category-error__text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.category-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ----- Sustainability page ----- */
.sustainability-page {
    background: var(--cw-white);
}

.sustainability-split {
    border-top: none;
}

.sustainability-glance .category-at-glance__title {
    color: var(--cw-charcoal);
}

.sustainability-focus {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.sustainability-focus .fs-sectors__grid {
    gap: 1rem;
}

.sustainability-principles {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sustainability-quote {
    background: linear-gradient(180deg, #ebe8e3 0%, #e2ded8 100%);
    padding: clamp(2.25rem, 5vw, 3.25rem) 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sustainability-quote__inner {
    max-width: 820px;
    margin: 0 auto;
}

.sustainability-quote__text {
    margin: 0;
    padding: 0;
    border: none;
}

.sustainability-quote__text p {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    color: #3d3530;
}

/* ----- Contact page ----- */
.contact-page {
    background: var(--cw-white);
}

.contact-main {
    padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    background: var(--cw-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-main__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-main__grid {
        grid-template-columns: 1fr;
    }
}

.contact-panel {
    background: var(--cw-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.contact-panel--primary {
    border-top: 4px solid var(--cw-gold);
}

.contact-panel--accent {
    background: var(--cw-gray-light);
    border-color: rgba(0, 0, 0, 0.05);
}

.contact-panel__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.contact-panel__meta {
    margin: 0 0 1.15rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--cw-gray);
}

.contact-panel__address {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
    font-style: normal;
    color: var(--cw-charcoal);
}

.contact-panel__email-line {
    margin: 0 0 1rem;
}

.contact-panel__email {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--cw-gold);
    word-break: break-all;
}

.contact-panel__email:hover {
    text-decoration: underline;
    color: var(--cw-gold-hover);
}

.contact-panel__note {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--cw-gray);
}

.contact-panel__cta {
    margin: 0;
}

.contact-panel__lead {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cw-charcoal);
}

.contact-panel__list {
    margin: 0 0 1.15rem;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.contact-panel__list li {
    margin-bottom: 0.5rem;
}

.contact-panel__footer {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--cw-gray);
    font-style: italic;
}

.contact-map {
    padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    background: linear-gradient(180deg, var(--cw-gray-light) 0%, var(--cw-white) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-map__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.contact-map__sub {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--cw-gray);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.contact-map__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.contact-map__placeholder {
    width: 100%;
    min-height: 220px;
    border-radius: 2px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(197, 157, 95, 0.25);
}

.contact-map__placeholder-icon {
    color: var(--cw-gold);
    opacity: 0.9;
}

.contact-map__placeholder-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36ch;
    text-align: center;
}

.contact-map__link {
    border-color: var(--cw-charcoal);
    color: var(--cw-charcoal);
    background: var(--cw-white);
}

.contact-map__link:hover {
    background: var(--cw-charcoal);
    color: var(--cw-white);
    border-color: var(--cw-charcoal);
}

.contact-quick {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-bottom-cta {
    border-top: none;
}

.contact-form-section {
    padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    background: var(--cw-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-section__inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    position: relative;
}

.contact-alert {
    padding: 1rem 1.15rem;
    border-radius: 2px;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-alert--success {
    background: rgba(45, 74, 50, 0.08);
    border: 1px solid rgba(45, 74, 50, 0.25);
    color: var(--cw-charcoal);
}

.contact-alert--error {
    background: rgba(139, 30, 30, 0.08);
    border: 1px solid rgba(139, 30, 30, 0.28);
    color: var(--cw-charcoal);
}

.contact-alert__title {
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.contact-alert__list {
    margin: 0;
    padding-left: 1.2rem;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

@media (max-width: 640px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field__label {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

.contact-field__req {
    color: #8b3a3a;
}

.contact-field__input,
.contact-field__select,
.contact-field__textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    background: var(--cw-white);
    color: var(--cw-charcoal);
}

.contact-field__input:focus,
.contact-field__select:focus,
.contact-field__textarea:focus {
    outline: 2px solid var(--cw-gold);
    outline-offset: 1px;
    border-color: var(--cw-gold);
}

.contact-field__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__privacy {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--cw-gray);
}

.contact-form__privacy a {
    font-weight: 600;
}

.contact-form__submit {
    margin-top: 1.5rem;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ----- Cookie consent banner ----- */
body.has-cookie-banner {
    padding-bottom: clamp(140px, 30vh, 220px);
}

body.has-cookie-banner.cookie-banner-prefs-open {
    padding-bottom: clamp(260px, 48vh, 420px);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    padding: 0 1rem 1rem;
    pointer-events: none;
}

.cookie-banner__surface {
    pointer-events: auto;
    max-width: 1120px;
    margin: 0 auto;
    background: var(--cw-white);
    border: 1px solid rgba(47, 47, 47, 0.12);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cookie-banner__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem 1.5rem;
    align-items: start;
    padding: 1.35rem 1.5rem 1.25rem;
}

@media (max-width: 720px) {
    .cookie-banner__grid {
        grid-template-columns: 1fr;
    }
}

.cookie-banner__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cw-charcoal-deep);
}

.cookie-banner__desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--cw-gray);
}

.cookie-banner__link {
    font-weight: 600;
    white-space: nowrap;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
    align-self: center;
}

.cookie-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.35rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-banner__btn--primary {
    background: var(--cw-gold);
    color: var(--cw-white);
    border-color: var(--cw-gold);
}

.cookie-banner__btn--primary:hover {
    background: var(--cw-gold-hover);
    border-color: var(--cw-gold-hover);
}

.cookie-banner__btn--secondary {
    background: transparent;
    color: var(--cw-charcoal);
    border-color: rgba(47, 47, 47, 0.35);
}

.cookie-banner__btn--secondary:hover {
    border-color: var(--cw-charcoal);
    background: rgba(47, 47, 47, 0.04);
}

.cookie-banner__btn--save {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 280px;
}

.cookie-banner__prefs {
    padding: 0 1.5rem 1.35rem;
    border-top: 1px solid rgba(47, 47, 47, 0.08);
    background: #fafafa;
}

.cookie-banner__prefs-lead {
    margin: 1rem 0 0.85rem;
    font-size: 0.85rem;
    color: var(--cw-gray);
    line-height: 1.45;
}

.cookie-banner__prefs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cookie-banner__pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(47, 47, 47, 0.06);
}

.cookie-banner__pref-row:last-of-type {
    border-bottom: none;
}

.cookie-banner__pref-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cw-charcoal);
}

label.cookie-banner__pref-name {
    cursor: pointer;
}

.cookie-banner__pref-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cw-gray);
    line-height: 1.35;
}

.cookie-banner__always {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-gold);
    white-space: nowrap;
}

.cookie-banner__toggle {
    width: 20px;
    height: 20px;
    accent-color: var(--cw-gold);
    cursor: pointer;
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}
