:root {
    --accent: #ff3b00;
    --accent-dark: #d93400;
    --ink: #333333;
    --muted: #7c7c7c;
    --page-bg: #e9e9e5;
    --footer: #2f2f2f;
    --footer-bottom: #262626;
    --line: #dedede;
    --content-width: 1020px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    position: relative;
    margin: 0;
    border-top: 6px solid #dce7ed;
    background: var(--page-bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--page-bg);
}

.page-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 700ms ease;
}

.page-background img.is-fading {
    opacity: 0;
}

.site {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--content-width));
    min-height: calc(100vh - 6px);
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    flex-direction: column;

}

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 28px;
    background: #ffffff;
}

.site > main {
    flex: 1 0 auto;
}

.site-footer {
    margin-top: auto;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 470px;
}

.brand img {
    display: block;
    width: 470px;
    height: 55px;
    object-fit: contain;
    object-position: left center;
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-label {
    display: none;
    width: 42px;
    height: 38px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
    display: block;
    width: 21px;
    height: 2px;
    background: #333333;
    content: "";
}

.nav-toggle-label span {
    position: relative;
}

.nav-toggle-label::before {
    position: absolute;
    transform: translateY(-7px);
}

.nav-toggle-label::after {
    position: absolute;
    transform: translateY(7px);
}

.main-nav {
    align-self: stretch;
}

.main-nav ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
    list-style: none;
}

.main-nav a {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 66px;
    align-items: center;
    padding: 0 13px;
    color: #303030;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
    color: var(--accent);
}

.main-nav a[aria-current="page"]::before {
    position: absolute;
    top: 0;
    right: 10px;
    left: 10px;
    height: 2px;
    background: var(--accent);
    content: "";
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #eeeeee;
}

.hero-slider img {
    display: block;
    width: 100%;
    aspect-ratio: 1019 / 381;
    object-fit: cover;
    opacity: 1;
    transition: opacity 700ms ease;
}

.hero-slider img.is-fading {
    opacity: 0;
}

.page-title {
    display: grid;
    min-height: 110px;
    place-items: center;
    padding: 24px;
    background: var(--accent);
    color: #ffffff;
    text-align: center;
}

.page-title h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 4vw, 38px);
    font-weight: 400;
    text-transform: uppercase;
}

.content {
    padding: 52px 28px 70px;
}

.content h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.15;
}

.content p {
    margin: 0 0 12px;
}

.content-rule {
    margin: 0 0 26px;
    border: 0;
    border-top: 1px solid var(--line);
}

.home-content {
    padding: 72px 30px 85px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.category-card {
    display: grid;
    grid-template-rows: 95px 240px;
    min-width: 0;
    color: inherit;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-3px);
}

.category-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
}

.category-card h2 {
    display: flex;
    height: 95px;
    margin: 0;
    padding: 0 10px 20px;
    align-items: flex-start;
    justify-content: center;
    color: var(--muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.category-card img,
.category-card.category-spices img {
    display: block;
    width: 100%;
    height: 240px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
}

.category-card.category-spices {
    grid-column: auto;
    width: auto;
    margin: 0;
    justify-self: stretch;
}



.bottom-banner img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.product-sections {
    display: grid;
    gap: 16px;
}

.product-section h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-section p {
    margin: 0;
    padding-left: 14px;
    color: #555555;
}

.about-copy {
    max-width: 940px;
}

.contact-company {
    margin: 22px 0 34px;
    font-size: 19px;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list a,
.footer-links a {
    color: var(--accent-dark);
    text-decoration: none;
}

.contact-list a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

.icon {
    display: inline-block;
    width: 20px;
    color: #3d3d3d;
    font-weight: 700;
    text-align: center;
}

.map-frame {
    width: 100%;
    height: 520px;
    border: 0;
}

.breadcrumb {
    padding: 8px 30px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer {
    background: var(--footer);
    color: #ffffff;
}

.footer-main {
    display: grid;
    grid-template-columns: 220px 240px;
    gap: 34px;
    min-height: 230px;
    padding: 46px 28px 40px;
}

.footer-column h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 400;
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    list-style: none;
}

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

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

.footer-logo {
    display: block;
    width: 164px;
    height: auto;
    margin-top: 6px;
}

.footer-bottom {
    padding: 13px 28px;
    background: var(--footer-bottom);
    color: #ffffff;
    font-size: 12px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 900px) {
    .site {
        width: min(calc(100% - 24px), var(--content-width));
    }

    .site-header {
        min-height: 72px;
        padding: 8px 18px;
    }

   .brand {
        flex: 1 1 auto;
    }

    .brand img {
        width: 100%;
        max-width: 470px;
        height: auto;
    }

    .nav-toggle-label {
        position: relative;
        display: flex;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        height: auto;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 10px 18px rgb(0 0 0 / 12%);
    }

    .main-nav ul {
        display: block;
        height: auto;
        padding: 8px 0;
    }

    .main-nav a {
        min-height: 44px;
        padding: 0 22px;
    }

    .main-nav a[aria-current="page"]::before {
        top: 8px;
        right: auto;
        bottom: 8px;
        left: 0;
        width: 3px;
        height: auto;
    }

    .nav-toggle:checked ~ .main-nav {
        display: block;
    }
}

@media (max-width: 760px) {
    body {
        border-top-width: 4px;
    }

    .site {
        width: 100%;
    }

    .site-header {
        min-height: 66px;
    }

    .brand {
        max-width: calc(100% - 58px);
    }

    .page-title {
        min-height: 90px;
    }

    .content,
    .home-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-content {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

      .category-card {
        grid-template-rows: auto auto;
    }


    .category-card.category-spices {
        grid-column: auto;
    }

     .category-card h2 {
        height: auto;
        min-height: 0;
        padding-bottom: 16px;
        align-items: center;
    }


    .category-card img,
    .category-card.category-spices img {
        width: min(100%, 460px);
        height: auto;
        object-position: center;
    }

    .bottom-banner img {
        height: 100px;
    }

    .map-frame {
        height: 390px;
    }
.footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 38px 22px;
    }

    .footer-bottom {
        padding: 14px 22px;
        line-height: 1.5;
    }

    .breadcrumb {
        padding-right: 22px;
        padding-left: 22px;
    }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
