@font-face {
    font-family: "Playfair";
    src: url("../fonts/playfair-display/PlayfairDisplay-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair";
    src: url("../fonts/playfair-display/PlayfairDisplay-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair";
    src: url("../fonts/playfair-display/PlayfairDisplay-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --header-height: 84px;
    --heading-font: "Playfair", serif;
    --body-font: "Inter", sans-serif;
    --hero-display-font: var(--heading-font);
    --hero-copy-font: var(--body-font);
    --primary: #C9A227;
    --secondary: #1F3D2B;
    --cream: #F4E7C5;
    --bg: #FAF9F6;
    --card-bg: #FFFFFF;
    --text-main: #1A1A1A;
    --text-secondary: #6B6B6B;
    --border: #E5E5E5;
    --primary-hover: #B8961F;
    --light-hover: #FFF8E1;
    --surface: var(--card-bg);
    --surface-soft: var(--cream);
    --surface-strong: var(--secondary);
    --ink: var(--text-main);
    --ink-soft: var(--text-secondary);
    --accent: var(--primary);
    --accent-deep: var(--primary-hover);
    --line: var(--border);
    --line-strong: rgba(26, 26, 26, 0.26);
    --shadow-soft: 0 12px 30px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 30px 60px rgba(26, 26, 26, 0.16);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--ink);
    background:
        radial-gradient(circle at 90% 0%, rgba(201, 162, 39, 0.16), transparent 36%),
        radial-gradient(circle at 0% 100%, rgba(244, 231, 197, 0.42), transparent 34%),
        var(--bg);
    line-height: 1.65;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    color: inherit;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.18;
}

h2 {
    font-size: 32px;
    line-height: 1.24;
}

h3 {
    font-size: 22px;
    line-height: 1.32;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

button,
input,
textarea,
select,
label,
.btn-primary,
.btn-outline {
    font-family: var(--body-font);
}

button {
    font-weight: 500;
}

main {
    overflow: clip;
}

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

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

a,
button,
input,
textarea,
.product-card,
.stat-card,
.signature-card,
.journey-card,
.contact-point {
    transition: all 0.25s ease;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-soft);
    background: rgba(250, 249, 246, 0.98);
}

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-name {
    font-family: var(--heading-font);
    font-size: clamp(1.05rem, 1.25vw, 1.4rem);
    color: var(--ink);
    letter-spacing: 0.01em;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-icon span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s ease;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar > ul > li {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown .nav-link-row > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    padding: 10px;
    margin: 0;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: var(--card-bg);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.nav-dropdown a {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.3;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.navbar .nav-dropdown a:hover,
.navbar .nav-dropdown a:focus-visible {
    background: var(--light-hover);
    color: var(--text-main);
    padding-left: 16px;
    transform: none;
}

.nav-item.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (min-width: 901px) {
    .nav-item.has-dropdown:hover .nav-dropdown,
    .nav-item.has-dropdown:focus-within .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.navbar a {
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    padding: 9px 16px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.navbar a:hover {
    background: var(--light-hover);
    color: var(--text-main);
    transform: translateY(-1px);
}

.navbar a.active {
    background: var(--primary);
    color: var(--card-bg);
    transform: translateY(-1px);
}

.hero-section {
    --hero-bg: url("../images/hero.jpg");
    position: relative;
    width: 100%;
    margin: 0 0 46px;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(40px, 7vh, 84px) 20px;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(26, 26, 26, 0.76), rgba(26, 26, 26, 0.36)),
        radial-gradient(circle at 90% 20%, rgba(201, 162, 39, 0.38), transparent 36%);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -16% -28% auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    color: var(--card-bg);
}

.hero-title,
.hero-content h1 {
    font-family: var(--hero-display-font);
    font-size: clamp(2.3rem, 5.4vw, 4.4rem);
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-wrap: balance;
    margin-bottom: 18px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero-kicker {
    font-family: var(--hero-copy-font);
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(252, 241, 204, 0.24);
    border: 1px solid rgba(201, 162, 39, 0.58);
    backdrop-filter: blur(4px);
    color: var(--bg);
    font-size: clamp(0.74rem, 1.1vw, 0.88rem);
    text-transform: uppercase;
    letter-spacing: 0.19em;
    font-weight: 700;
}

.hero-text {
    font-family: var(--hero-copy-font);
    font-size: clamp(1.03rem, 1.95vw, 1.33rem);
    font-weight: 500;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.94);
    max-width: 740px;
    margin: 0 auto 24px;
    text-wrap: pretty;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    font-family: var(--hero-copy-font);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--card-bg);
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.34);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-deep);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.54);
    color: var(--card-bg);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.trade-pulse {
    max-width: var(--max);
    margin: 0 auto 40px;
    padding: 0 6px;
    overflow: hidden;
}

.trade-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-scroll 24s linear infinite;
}

.trade-track span {
    background: var(--card-bg);
    border: 1px solid rgba(26, 26, 26, 0.14);
    border-radius: 999px;
    color: var(--text-main);
    padding: 9px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: 0 8px 16px rgba(26, 26, 26, 0.06);
    white-space: nowrap;
}

@keyframes pulse-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.stats-strip {
    max-width: var(--max);
    margin: 0 auto 54px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0 6px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    display: block;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.signature-strip {
    max-width: var(--max);
    margin: 0 auto 54px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0 6px;
}

.signature-card {
    background: linear-gradient(160deg, var(--card-bg), var(--light-hover));
    border: 1px solid rgba(201, 162, 39, 0.44);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 14px 28px rgba(26, 26, 26, 0.08);
}

.signature-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--text-main);
    font-size: 1.12rem;
    margin-bottom: 12px;
}

.signature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.signature-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.process-section {
    max-width: var(--max);
    margin: 0 auto 64px;
    padding: 48px 20px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.section-title {
    font-family: var(--heading-font);
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    color: var(--ink);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 760px;
    margin: 0 auto 30px;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.process-step {
    background: linear-gradient(180deg, var(--card-bg), var(--bg));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 9px 22px rgba(26, 26, 26, 0.06);
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--accent);
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.image-showcase {
    max-width: var(--max);
    margin: 0 auto 64px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: center;
}

.showcase-content {
    background: linear-gradient(160deg, var(--bg), var(--cream));
    border: 1px solid rgba(201, 162, 39, 0.42);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(20px, 2.4vw, 34px);
}

.showcase-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.showcase-content p {
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    grid-auto-rows: 140px;
}

.showcase-tile {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.12);
    box-shadow: 0 12px 20px rgba(26, 26, 26, 0.09);
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.showcase-tile:hover img {
    transform: scale(1.05);
}

.showcase-tile.tall {
    grid-row: span 2;
}

.showcase-tile.wide {
    grid-column: span 2;
}

.company-profile-section,
.about-us-section,
.tastant-section,
.indian-spices-section,
.fresh-produce-section,
.mission-section {
    max-width: var(--max);
    margin: 0 auto 64px;
    padding: 0 20px;
}

.tastant-section,
.indian-spices-section,
.fresh-produce-section {
    margin-bottom: 0;
    padding: 96px 20px;
}

.company-profile-container,
.about-us-container,
.tastant-container,
.indian-spices-container,
.fresh-produce-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.company-image img,
.about-image img,
.tastant-image img,
.spices-image img,
.produce-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.company-content,
.about-content,
.tastant-content,
.spices-content,
.produce-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--shadow-soft);
}

.company-content h2,
.about-content h2,
.tastant-content h2,
.spices-content h2,
.produce-content h2,
.mission-title {
    font-family: var(--heading-font);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.company-content p,
.about-content p,
.tastant-content p,
.spices-content p,
.produce-content p,
.mission-container p {
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 162, 39, 0.34);
    border-radius: 999px;
    background: var(--light-hover);
    color: var(--secondary);
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
}

.tastant-cta {
    display: inline-flex;
    margin-top: 32px;
}

.mission-section {
    background: linear-gradient(135deg, var(--cream), var(--light-hover));
    border-radius: var(--radius-lg);
    padding: 40px 22px;
    color: var(--ink);
}

.mission-container {
    max-width: 920px;
    margin: 0 auto;
}

.mission-title {
    text-align: center;
    color: var(--ink);
}

.mission-container p {
    color: var(--ink-soft);
}

.footer {
    margin-top: 70px;
    background: linear-gradient(145deg, var(--secondary), var(--text-main));
    color: var(--card-bg);
    padding: 44px 0 16px;
}

.footer-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 26px;
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
}

.footer-box h3 {
    font-family: var(--heading-font);
    color: var(--cream);
    margin-bottom: 10px;
}

.footer-box p {
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(244, 231, 197, 0.58);
    display: inline-grid;
    place-items: center;
    font-size: 1.08rem;
    color: var(--card-bg);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    max-width: var(--max);
    margin: 24px auto 0;
    padding: 14px 20px 0;
    border-top: 1px solid rgba(244, 231, 197, 0.24);
    text-align: center;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.76);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: var(--card-bg);
    font-size: 1.7rem;
    box-shadow: 0 14px 24px rgba(31, 61, 43, 0.28);
    z-index: 1300;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 28px rgba(31, 61, 43, 0.36);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .image-showcase {
        grid-template-columns: 1fr;
    }

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

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .menu-icon {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        width: min(270px, calc(100vw - 40px));
        background: var(--card-bg);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        padding: 10px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0.25s ease;
    }

    .navbar ul {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar a {
        display: block;
        width: 100%;
    }

    .nav-link-row {
        display: flex;
        align-items: center;
    }

    .nav-item.has-dropdown .nav-link-row > a {
        flex: 1;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin: 0 0 0 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        pointer-events: none;
        transition: max-height 0.26s ease, opacity 0.2s ease;
        transition-delay: 0s;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-item.has-dropdown.is-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 340px;
        pointer-events: auto;
        margin-top: 4px;
    }

    .nav-dropdown a {
        font-size: 0.9rem;
        color: var(--text-secondary);
        padding: 7px 10px 7px 14px;
    }

    .navbar .nav-dropdown a:hover,
    .navbar .nav-dropdown a:focus-visible {
        background: var(--light-hover);
        padding-left: 18px;
    }

    #menu-toggle:checked ~ .navbar {
        opacity: 1;
        visibility: visible;
        max-height: 420px;
    }

    .company-profile-container,
    .about-us-container,
    .tastant-container,
    .indian-spices-container,
    .fresh-produce-container {
        grid-template-columns: 1fr;
    }

    .company-image,
    .spices-image {
        order: -1;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 74px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .nav-container {
        padding: 12px 14px;
    }

    .logo-name {
        font-size: 0.98rem;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .hero-section {
        margin: 0 0 34px;
        padding: 34px 16px;
        min-height: calc(100svh - var(--header-height));
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .process-section {
        margin: 0 10px 42px;
        padding: 30px 14px;
    }

    .stats-strip {
        margin: 0 10px 38px;
        grid-template-columns: 1fr;
    }

    .trade-pulse {
        margin: 0 10px 30px;
        padding: 0;
    }

    .signature-strip {
        margin: 0 10px 40px;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .image-showcase {
        margin: 0 10px 44px;
        padding: 0;
    }

    .showcase-grid {
        grid-auto-rows: 120px;
    }

    .company-profile-section,
    .about-us-section,
    .tastant-section,
    .indian-spices-section,
    .fresh-produce-section,
    .mission-section {
        margin-bottom: 44px;
        padding: 0 10px;
    }

    .tastant-section,
    .indian-spices-section,
    .fresh-produce-section {
        margin-bottom: 0;
        padding: 48px 10px;
    }

    .company-content,
    .about-content,
    .tastant-content,
    .spices-content,
    .produce-content {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .footer {
        margin-top: 44px;
    }

    .footer-container {
        padding: 0 14px;
    }

    .footer-bottom {
        padding: 12px 14px 0;
    }
}
