:root {
    --brand: #9d2f16;
    --brand-dark: #54170d;
    --brand-soft: #ffe8dc;
    --gold: #d79a1d;
    --gold-soft: #fff1bf;
    --leaf: #2f6d44;
    --ink: #241b17;
    --muted: #6c625c;
    --paper: #fff8e8;
    --line: #ead5b4;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fffdf7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.top-strip {
    background: linear-gradient(90deg, var(--brand-dark), #7c2614);
    color: #fff8e8;
    font-size: .92rem;
    padding: .55rem 0;
}

.top-strip-inner,
.top-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .7rem 1.2rem;
}

.top-strip-inner {
    justify-content: space-between;
}

.top-contact {
    min-width: 0;
}

.top-strip a,
.top-strip span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-width: 0;
}

.top-strip a span,
.top-strip span span {
    overflow-wrap: anywhere;
}

.top-action {
    color: #ffe0a1;
    font-weight: 800;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 16px 38px rgba(36, 27, 23, .13);
}

.navbar {
    min-height: 76px;
    --bs-navbar-toggler-border-color: var(--line);
    --bs-navbar-toggler-focus-width: .12rem;
}

.navbar-brand strong,
.navbar-brand small {
    display: block;
    line-height: 1.1;
}

.navbar-brand strong {
    color: var(--brand-dark);
    font-size: 1.18rem;
}

.navbar-brand small {
    color: var(--muted);
    font-size: .78rem;
}

.navbar-brand img {
    flex: 0 0 auto;
}

.navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    color: var(--ink);
    font-weight: 800;
    padding: .7rem .88rem;
    border-radius: 999px;
    transition: background-color .18s ease, color .18s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--brand);
    background: var(--brand-soft);
}

.navbar .nav-link i {
    color: var(--gold);
    font-size: 1rem;
}

.navbar-toggler {
    border-radius: 8px;
    min-width: 44px;
    min-height: 42px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .12rem rgba(157, 47, 22, .22);
}

.dropdown-menu {
    border-color: var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(36, 27, 23, .14);
    padding: .5rem;
}

.dropdown-item {
    border-radius: 6px;
    color: var(--ink);
    font-weight: 700;
    padding: .6rem .75rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.product-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: .35rem;
    min-width: 540px;
}

.nav-cta {
    min-height: 42px;
    padding: .68rem 1rem;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar .dropdown {
        position: relative;
    }

    .navbar .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 10px;
    }

    .navbar .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
        visibility: hidden;
    }

    .navbar .product-menu {
        display: grid;
    }

    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown:focus-within > .dropdown-menu,
    .navbar .dropdown.is-hovering > .dropdown-menu,
    .navbar .dropdown-menu.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .navbar .dropdown:hover > .nav-link,
    .navbar .dropdown:focus-within > .nav-link,
    .navbar .dropdown.is-hovering > .nav-link {
        color: var(--brand);
        background: var(--brand-soft);
    }
}

.btn {
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    padding: .82rem 1.14rem;
}

.btn-brand {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.btn-light-ghost {
    --bs-btn-bg: rgba(255, 255, 255, .16);
    --bs-btn-border-color: rgba(255, 255, 255, .65);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-hover-color: var(--brand-dark);
}

.hero-slider {
    background: var(--brand-dark);
}

.hero-slide {
    min-height: clamp(520px, 72vh, 690px);
    position: relative;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(45, 13, 8, .94) 0%, rgba(90, 25, 12, .74) 46%, rgba(36, 27, 23, .26) 100%),
        radial-gradient(circle at 82% 24%, rgba(215, 154, 29, .35), transparent 30%);
}

.min-vh-hero {
    min-height: clamp(520px, 72vh, 690px);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.eyebrow,
.section-heading span,
.section-kicker,
.quote-panel span,
.category-card span,
.wide-product span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--brand);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: .82rem;
}

.eyebrow.light {
    color: #ffe0a1;
}

.hero-slide h1 {
    max-width: 760px;
    margin: 1rem 0;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .92;
    font-weight: 950;
    color: #fff;
}

.hero-slide p {
    max-width: 620px;
    color: #ffe7cb;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff8e8;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    padding: .45rem .75rem;
    background: rgba(255, 255, 255, .08);
}

.hero-control {
    width: 5%;
}

.carousel-indicators [data-bs-target] {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background-color: #ffe0a1;
}

.floating-products {
    position: relative;
    z-index: 5;
    margin-top: -58px;
}

.product-ribbon {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(36, 27, 23, .2);
}

.product-ribbon a {
    display: grid;
    grid-template-columns: 58px 1fr 18px;
    align-items: center;
    gap: .75rem;
    min-height: 116px;
    padding: 1rem;
    background: #fff;
    border-right: 1px solid var(--line);
    color: var(--brand-dark);
    font-weight: 900;
}

.product-ribbon a:last-child {
    border-right: 0;
}

.product-ribbon img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--paper);
}

.product-ribbon i {
    color: var(--gold);
}

.feature-band {
    background: linear-gradient(90deg, var(--brand-dark), #7c2614, #2f6d44);
    color: #fff8e8;
    padding: 2rem 0;
}

.feature-band .col-md-4 {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .2rem .9rem;
    align-items: center;
}

.feature-band i {
    grid-row: span 2;
    color: #ffe0a1;
    font-size: 2rem;
}

.feature-band strong,
.feature-band span {
    display: block;
}

.feature-band span {
    color: #f1cfad;
}

.section {
    padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.section-heading h2,
.intro-section h2,
.quote-panel h2,
.content-panel h2 {
    color: var(--brand-dark);
    font-weight: 950;
    line-height: 1.06;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: .45rem 0 .7rem;
}

.section-heading p,
.intro-section p,
.product-card p,
.content-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-section {
    background:
        linear-gradient(180deg, #fffdf7, #fff8e8);
}

.product-card,
.category-card,
.enquiry-form,
.quote-panel,
.glimpse-grid > div,
.content-panel,
.spec-panel,
.wide-product,
.contact-panel,
.value-card,
.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(97, 62, 23, .08);
}

.product-card {
    height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(97, 62, 23, .16);
}

.product-card img {
    width: 100%;
    aspect-ratio: 5 / 3.2;
    object-fit: cover;
    background: var(--paper);
}

.product-card-body {
    padding: 1.25rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .8rem;
    margin-bottom: .8rem;
}

.product-actions a,
.category-card a {
    color: var(--brand);
    font-weight: 900;
    font-size: .93rem;
}

.product-card h3 {
    color: var(--brand-dark);
    font-size: 1.35rem;
    font-weight: 950;
}

.product-card ul {
    list-style: none;
    margin: .6rem 0 0;
    padding: 0;
}

.product-card li {
    border-top: 1px dashed var(--line);
    color: var(--muted);
    padding: .48rem 0;
}

.product-category {
    color: var(--leaf);
    display: block;
    font-size: .82rem;
    font-weight: 900;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.category-section,
.value-section {
    background: var(--paper);
}

.category-card {
    display: grid;
    grid-template-columns: minmax(160px, 42%) 1fr;
    min-height: 285px;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card div {
    padding: 2rem;
}

.category-card h2 {
    color: var(--brand-dark);
    font-weight: 950;
    margin: .4rem 0 1rem;
}

.category-card p {
    color: var(--muted);
}

.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.glimpse-grid.single-column {
    grid-template-columns: 1fr;
}

.glimpse-grid > div {
    padding: 1.35rem;
}

.glimpse-grid i {
    color: var(--gold);
    font-size: 2rem;
}

.glimpse-grid span,
.glimpse-grid strong {
    display: block;
}

.glimpse-grid span {
    color: var(--muted);
    margin-top: .8rem;
}

.glimpse-grid strong {
    color: var(--brand-dark);
    font-size: 1.15rem;
}

.enquiry-section {
    background:
        linear-gradient(rgba(84, 23, 13, .91), rgba(84, 23, 13, .91)),
        url("../images/products/coriander.svg") center / cover;
}

.enquiry-section.compact {
    padding: 4rem 0;
}

.quote-panel,
.enquiry-form {
    height: 100%;
    padding: 2rem;
}

.quote-panel {
    background: #fff7df;
}

.quote-panel h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: .45rem 0 1rem;
}

.quote-panel p {
    color: var(--muted);
}

.quote-panel div {
    display: flex;
    gap: .65rem;
    align-items: center;
    color: var(--brand-dark);
    font-weight: 900;
    margin-top: .9rem;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border-color: var(--line);
    border-radius: 6px;
    min-height: 50px;
}

.page-hero,
.product-detail-hero {
    color: #fff;
    padding: 6.2rem 0;
    background:
        linear-gradient(90deg, rgba(45, 13, 8, .94), rgba(84, 23, 13, .76)),
        url("../images/products/cumin.svg") center / cover;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(45, 13, 8, .94), rgba(47, 109, 68, .72)),
        url("../images/products/coriander.svg") center / cover;
}

.products-hero {
    background:
        linear-gradient(90deg, rgba(45, 13, 8, .94), rgba(157, 47, 22, .74)),
        url("../images/products/chilli.svg") center / cover;
}

.contact-hero,
.testimonials-hero {
    background:
        linear-gradient(90deg, rgba(45, 13, 8, .94), rgba(36, 27, 23, .68)),
        url("../images/products/turmeric.svg") center / cover;
}

.page-hero h1,
.product-detail-hero h1 {
    max-width: 860px;
    margin: .8rem 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 950;
    line-height: .98;
}

.page-hero p,
.product-detail-hero p {
    max-width: 700px;
    color: #ffe7cb;
    font-size: 1.18rem;
}

.detail-image-wrap {
    border: 10px solid rgba(255, 255, 255, .75);
    border-radius: 8px;
    box-shadow: 0 26px 58px rgba(0, 0, 0, .28);
    overflow: hidden;
}

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

.content-panel,
.spec-panel,
.contact-panel,
.value-card,
.testimonial-card {
    padding: 2rem;
}

.content-panel h3 {
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-weight: 950;
    margin-top: 1.5rem;
}

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.highlight-list span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--leaf);
    border: 1px solid #c8e2cf;
    border-radius: 999px;
    padding: .5rem .75rem;
    background: #f4fbf5;
    font-weight: 800;
}

.about-profile {
    height: 100%;
}

.about-facts {
    height: 100%;
}

.about-facts strong {
    overflow-wrap: anywhere;
}

.about-hero-compact {
    padding: clamp(3.2rem, 6vw, 4.7rem) 0;
}

.about-hero-compact h1 {
    max-width: 920px;
    font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.about-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}

.about-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff8e8;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    padding: .46rem .75rem;
    font-weight: 800;
}

.about-section-compact {
    padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.about-overview,
.about-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    gap: 1.25rem;
    align-items: stretch;
}

.about-story-panel,
.about-quick-facts,
.about-card-grid > div,
.about-process-panel,
.about-contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(97, 62, 23, .08);
}

.about-story-panel,
.about-process-panel,
.about-contact-card {
    padding: 1.5rem;
}

.about-story-panel h2,
.about-process-panel h2,
.about-contact-card h2 {
    color: var(--brand-dark);
    font-weight: 950;
    line-height: 1.08;
}

.about-story-panel h2 {
    max-width: 720px;
    font-size: clamp(1.75rem, 3.6vw, 3rem);
    margin: .45rem 0 .85rem;
}

.about-story-panel p,
.about-card-grid p,
.about-process-list p {
    color: var(--muted);
}

.compact-highlights {
    margin-top: 1rem;
}

.about-quick-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
}

.about-quick-facts div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: .1rem .8rem;
    align-items: center;
    border-bottom: 1px dashed var(--line);
    padding: 1rem;
}

.about-quick-facts div:last-child {
    border-bottom: 0;
}

.about-quick-facts i {
    grid-row: span 2;
    color: var(--gold);
    font-size: 1.55rem;
}

.about-quick-facts span,
.about-contact-card span {
    color: var(--muted);
    font-size: .86rem;
}

.about-quick-facts strong,
.about-contact-card strong {
    color: var(--brand-dark);
    font-weight: 950;
    overflow-wrap: anywhere;
}

.about-feature-strip {
    padding: 1.35rem 0;
}

.compact-heading {
    margin-bottom: 1.5rem;
}

.compact-heading h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-card-grid > div {
    padding: 1.25rem;
}

.about-card-grid i {
    color: var(--gold);
    font-size: 1.8rem;
}

.about-card-grid h3 {
    color: var(--brand-dark);
    font-size: 1.12rem;
    font-weight: 950;
    margin: .75rem 0 .45rem;
}

.about-card-grid p {
    font-size: .98rem;
    margin: 0;
}

.about-process-panel h2 {
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    margin: .45rem 0 1rem;
}

.about-process-list {
    display: grid;
    gap: .75rem;
}

.about-process-list div,
.about-contact-card div {
    border-top: 1px dashed var(--line);
    padding: .75rem 0;
}

.about-process-list div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .15rem .85rem;
}

.about-process-list span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 950;
}

.about-process-list strong {
    color: var(--brand-dark);
    font-weight: 950;
}

.about-process-list p {
    margin: 0;
}

.about-contact-card h2 {
    font-size: 1.35rem;
    margin-bottom: .5rem;
}

.about-contact-card div {
    display: grid;
    gap: .15rem;
}

.about-contact-card .btn {
    justify-content: center;
    margin-top: .85rem;
    width: 100%;
}

.spec-panel h2,
.contact-panel h2 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    font-weight: 950;
    margin-bottom: 1rem;
}

.spec-panel div,
.contact-panel div {
    display: grid;
    gap: .25rem;
    border-top: 1px dashed var(--line);
    padding: .85rem 0;
}

.contact-panel div {
    grid-template-columns: 34px 1fr;
}

.contact-panel i {
    grid-row: span 2;
    color: var(--gold);
    font-size: 1.5rem;
}

.spec-panel span,
.contact-panel span {
    color: var(--muted);
    font-size: .9rem;
}

.spec-panel strong,
.contact-panel strong {
    color: var(--ink);
}

.wide-product {
    display: grid;
    grid-template-columns: 42% 1fr;
    height: 100%;
    overflow: hidden;
}

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

.wide-product div {
    padding: 2rem;
}

.wide-product h2 {
    color: var(--brand-dark);
    font-weight: 950;
}

.wide-product p {
    color: var(--muted);
}

.value-card,
.testimonial-card {
    height: 100%;
}

.value-card i,
.testimonial-card i {
    color: var(--gold);
    font-size: 2.2rem;
}

.value-card h3 {
    color: var(--brand-dark);
    font-weight: 950;
    margin: 1rem 0 .5rem;
}

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

.about-product-grid > div,
.about-process > div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(97, 62, 23, .08);
    padding: 1.5rem;
}

.about-product-grid i {
    color: var(--gold);
    font-size: 2rem;
}

.about-product-grid h3,
.about-process strong {
    color: var(--brand-dark);
    font-weight: 950;
}

.about-product-grid h3 {
    margin: 1rem 0 .55rem;
}

.about-product-grid p,
.about-process p {
    color: var(--muted);
    margin: 0;
}

.about-process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    height: 100%;
}

.about-process > div {
    display: grid;
    gap: .55rem;
}

.about-process span {
    color: var(--brand);
    font-size: .82rem;
    font-weight: 950;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 1rem 0;
}

.detailed-testimonial {
    display: flex;
    flex-direction: column;
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.testimonial-top span {
    color: var(--leaf);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.testimonial-card strong,
.testimonial-card small {
    display: block;
}

.testimonial-card strong {
    color: var(--brand-dark);
    font-weight: 950;
}

.testimonial-card small {
    color: var(--muted);
    margin-top: .25rem;
}

.rating {
    display: flex;
    gap: .16rem;
    margin-top: 1rem;
}

.rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, #fff7df, #fff),
        #fff;
    box-shadow: 0 14px 34px rgba(97, 62, 23, .08);
    padding: 2rem;
}

.testimonial-summary span {
    color: var(--brand);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.testimonial-summary strong {
    display: block;
    color: var(--brand-dark);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    font-weight: 950;
    line-height: 1.08;
    margin: .5rem 0 .75rem;
}

.testimonial-summary p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.testimonial-metrics div {
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
}

.testimonial-metrics strong {
    font-size: 1.45rem;
    margin: 0 0 .35rem;
}

.testimonial-metrics span {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.25;
    text-transform: none;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.sitemap-grid a {
    display: block;
    border-top: 1px dashed var(--line);
    color: var(--brand);
    font-weight: 800;
    padding: .55rem 0;
}

.site-footer {
    background: #211512;
    color: #f8ead6;
    padding: 3.5rem 0 1.4rem;
}

.site-footer h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
    color: #d9c7b0;
}

.site-footer a {
    display: block;
    margin-bottom: .45rem;
}

.site-footer a:hover {
    color: #ffe0a1;
}

.site-footer a,
.contact-panel strong,
.quote-panel div {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 2.5rem;
    padding-top: 1.1rem;
    color: #b9a891;
    font-size: .92rem;
}

@media (max-width: 1199.98px) {
    .navbar .nav-link {
        padding-inline: .68rem;
    }

    .product-ribbon {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .top-contact {
        justify-content: center;
    }

    .navbar {
        min-height: 68px;
    }

    .navbar-brand img {
        width: 46px;
        height: 46px;
    }

    .navbar-brand strong {
        font-size: 1.05rem;
    }

    .navbar-brand small {
        font-size: .72rem;
    }

    .navbar-collapse {
        background: #fffdf7;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 20px 44px rgba(36, 27, 23, .16);
        margin-top: .85rem;
        max-height: calc(100vh - 132px);
        overflow-y: auto;
        padding: .7rem;
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: .25rem;
    }

    .navbar .nav-link {
        display: flex;
        justify-content: flex-start;
        padding: .78rem .85rem;
        border-radius: 8px;
    }

    .nav-cta {
        display: flex;
        justify-content: center;
        margin-top: .4rem;
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        border: 0;
        box-shadow: none;
        margin: .1rem 0 .4rem 1.15rem;
        padding: .25rem;
        background: #fff4dc;
    }

    .dropdown-menu.show {
        display: block;
    }

    .product-menu {
        min-width: 0;
    }

    .product-menu-column + .product-menu-column {
        border-top: 1px solid var(--line);
        margin-top: .4rem;
        padding-top: .4rem;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: 600px;
    }

    .product-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-summary {
        grid-template-columns: 1fr;
    }

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

    .about-overview,
    .about-bottom-grid {
        grid-template-columns: 1fr;
    }

    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 575.98px) {
    .top-strip {
        font-size: .8rem;
        padding: .45rem 0;
    }

    .top-strip-inner,
    .top-contact {
        gap: .35rem .7rem;
    }

    .top-contact {
        width: 100%;
    }

    .top-action {
        border: 1px solid rgba(255, 224, 161, .45);
        border-radius: 999px;
        padding: .28rem .68rem;
    }

    .navbar > .container {
        gap: .6rem;
    }

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

    .navbar-brand span {
        min-width: 0;
    }

    .navbar-brand strong {
        font-size: .98rem;
        overflow-wrap: anywhere;
    }

    .navbar-brand small {
        font-size: .68rem;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: 560px;
    }

    .hero-slide-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .hero-slide h1 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .hero-slide p,
    .page-hero p,
    .product-detail-hero p {
        font-size: 1rem;
    }

    .hero-meta span {
        width: 100%;
        border-radius: 8px;
    }

    .about-hero-points span {
        width: 100%;
        border-radius: 8px;
    }

    .about-hero-compact {
        padding: 3rem 0;
    }

    .about-hero-compact h1 {
        font-size: 2rem;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .page-hero,
    .product-detail-hero {
        padding: 4.2rem 0;
    }

    .page-hero h1,
    .product-detail-hero h1 {
        font-size: 2.2rem;
    }

    .product-ribbon,
    .category-card,
    .glimpse-grid,
    .wide-product {
        grid-template-columns: 1fr;
    }

    .floating-products {
        margin-top: 0;
    }

    .product-ribbon {
        border-radius: 0;
    }

    .product-ribbon a {
        min-height: 94px;
    }

    .category-card div,
    .wide-product div {
        padding: 1.35rem;
    }

    .category-card img,
    .wide-product img {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .quote-panel,
    .enquiry-form,
    .content-panel,
    .spec-panel,
    .contact-panel,
    .value-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-summary {
        padding: 1.25rem;
    }

    .testimonial-metrics {
        grid-template-columns: 1fr;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .about-story-panel,
    .about-process-panel,
    .about-contact-card,
    .about-card-grid > div {
        padding: 1.15rem;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-top: .45rem;
    }
}
