:root {
    --bg-primary: #f5efe3;
    --bg-secondary: #eadfc9;
    --paper: #fffaf0;
    --ink: #2a351a;
    --muted-ink: #5d6755;
    --primary: #444c20;
    --accent: #f6b031;
    --line: #ce9325;

    --font-main: 'Manrope', sans-serif;
    --font-display: 'Fraunces', serif;

    --container-width: 1160px;
    --nav-height: 84px;
}

html {
    scrollbar-color: #f6b031 transparent;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 1rem);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background-color: #e0a139;
    border-radius: 99px;
}

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

body {
    font-family: var(--font-main);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg-primary);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    color: var(--ink);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--line);
    transform: translateY(-4px);
}

.back-to-top.show {
    display: flex;
}

body.is-loaded main,
body.is-loaded .page-hero,
body.is-loaded .hero-section {
    animation: pageFadeIn 0.55s ease-out both;
}

img {
    height: auto;
}

.navbar {
    width: 100%;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 239, 227, 0.96);
    border-bottom: 1px solid rgba(93, 103, 85, 0.16);
    overflow: visible;
    will-change: transform;
    transform: translateZ(0);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    height: var(--nav-height);
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 101;
    margin-top: 30px;
    transition: margin-top 0.28s ease;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
    transition: height 0.28s ease, filter 0.28s ease;
}



.navbar.scrolled .logo {
    margin-top: 6px;
}

.navbar.scrolled .logo img {
    height: 64px;
    filter: none;
}

.logo-text {
    color: var(--ink);
}

.logo-dot {
    color: var(--accent);
    font-size: 2.3rem;
    line-height: 0;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
}

.nav-links a {
    display: inline-flex;
    color: var(--muted-ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: none;
    position: relative;
    padding-bottom: 0.35rem;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1) !important;
    transform-origin: left;
}

.nav-cta {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    padding: 0.65rem 1.35rem;
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: transparent;
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(93, 103, 85, 0.3);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: 3rem 2rem 4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(139, 195, 74, 0.22) 0%, transparent 36%),
        radial-gradient(circle at 84% 22%, rgba(226, 162, 43, 0.2) 0%, transparent 38%),
        linear-gradient(150deg, #070a06 0%, #10150d 45%, #141b10 100%);
}

.page-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    color: #fff;
    background-color: #1f2a1e;
    background-image: linear-gradient(160deg, rgba(15, 32, 15, 0.82), rgba(47, 107, 58, 0.45) 45%, rgba(194, 111, 46, 0.3)), var(--hero-image, linear-gradient(135deg, rgba(31, 42, 30, 0.82), rgba(70, 92, 61, 0.35)));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 32, 15, 0.42);
}

.page-hero .hero-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 68ch;
}

.page-hero.home {
    --hero-image: url('images/johari_rice_5kg.webp');
}

.page-hero.about {
    --hero-image: url('images/about banner.webp');
}

.page-hero.about::after {
    display: none;
}

.page-hero.products {
    --hero-image: url('images/06.webp');
}

.page-hero.testimonials {
    --hero-image: url('images/pngwing.com.png');
}

.page-hero.contact {
    --hero-image: url('images/11.webp');
}

.hero-section .hero-title,
.hero-section .stat-number {
    color: #f6f7f2;
}

.hero-section .hero-subtitle,
.hero-section .stat-label {
    color: #c4cab8;
}

.hero-section .badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section .badge-text {
    color: #d7ddc9;
}

.hero-section .stat-divider {
    background: rgba(255, 255, 255, 0.22);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(56px);
    z-index: 0;
    opacity: 0.38;
    will-change: transform;
    transform: translateZ(0);
}

.glow-1 {
    top: 8%;
    left: -10%;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    background: radial-gradient(circle, rgba(194, 111, 46, 0.28) 0%, transparent 70%);
}

.glow-2 {
    bottom: -18%;
    right: -8%;
    width: min(45vw, 560px);
    height: min(45vw, 560px);
    background: radial-gradient(circle, rgba(47, 107, 58, 0.24) 0%, transparent 72%);
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 250, 240, 0.75);
    border: 1px solid var(--line);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-ink);
}

.badge-icon,
.mv-icon,
.feature-icon,
.reason-icon,
.method-icon,
.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.icon-flat {
    width: 1em;
    height: 1em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.2vw, 5.25rem);
    font-weight: 700;
    line-height: 1.03;
    margin-bottom: 1.2rem;
    max-width: 10ch;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
    transform: translateY(26px);
}

.text-gradient {
    color: var(--accent);
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    text-decoration-color: rgba(194, 111, 46, 0.4);
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--muted-ink);
    max-width: 54ch;
    margin-bottom: 2.2rem;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(26px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1rem 0 2.6rem;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
    opacity: 0;
    transform: translateY(26px);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.35rem;
    border-radius: 4px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(47, 107, 58, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) rotate(-0.35deg);
    background: #444c20;
}

.btn-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.82);
    color: var(--ink);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
}

.stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(26px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
}

.stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-ink);
}

.stat-divider {
    width: 34px;
    height: 1px;
    background: var(--line);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.45s forwards;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: rotate(1.3deg);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(31, 42, 30, 0.2));
}

.floating {
    animation: floating 7s ease-in-out infinite;
}

.glass-card {
    background: rgba(255, 250, 240, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 10px 28px rgba(31, 42, 30, 0.06);
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(47, 107, 58, 0.1), rgba(194, 111, 46, 0.1));
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-card:hover .card-image img {
    transform: scale(1.05);
}

.image-wrapper .glass-card {
    position: absolute;
    bottom: -1.2rem;
    left: -2.2rem;
    background: rgba(255, 255, 255, 0.88);
    animation: float-delayed 8s ease-in-out infinite;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-weight {
    font-family: var(--font-display);
    font-size: 1.18rem;
    line-height: 1.15;
    color: var(--ink);
}

.price-value {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 800;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.9deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes float-delayed {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

    100% {
        transform: translateY(0);
    }
}

.section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    background-color: var(--bg-primary);
    background-image: repeating-linear-gradient(0deg,
            transparent 0,
            transparent 3px,
            rgba(31, 42, 30, 0.012) 3px,
            rgba(31, 42, 30, 0.012) 4px);
}

.bg-secondary {
    background-color: var(--bg-secondary);
    background-image:
        linear-gradient(180deg, rgba(234, 223, 201, 0.45) 0%, rgba(234, 223, 201, 0.82) 100%),
        repeating-linear-gradient(0deg,
            transparent 0,
            transparent 3px,
            rgba(31, 42, 30, 0.012) 3px,
            rgba(31, 42, 30, 0.012) 4px);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.06;
    margin-bottom: 1.15rem;
    color: var(--ink);
}

.action-panel {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) minmax(220px, 1fr);
    gap: 2rem;
    align-items: center;
}

.action-panel .section-title {
    color: #e2a22b;
}

.action-panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-panel-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 18px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header p,
.section-content p,
.source-content p,
.step-content p,
.contact-info p {
    color: var(--muted-ink);
}

.text-center {
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    align-items: start;
}

.lead-text {
    font-family: var(--font-display);
    font-size: 1.34rem;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.highlight-text {
    font-size: 1.02rem;
    color: var(--ink);
    margin-top: 1.2rem;
    padding-left: 0.9rem;
    border-left: 3px solid var(--accent);
}

.section-content p {
    margin-bottom: 0.9rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.w-100 {
    width: 100%;
}

.text-small {
    font-size: 0.875rem;
    color: var(--muted-ink);
}

.text-accent {
    color: var(--accent);
}

.mission-vision-cards {
    display: grid;
    gap: 1.4rem;
}

.mv-card {
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mv-card:nth-child(1) {
    transform: rotate(-0.6deg);
}

.mv-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.mv-card:hover {
    transform: translateY(-4px) rotate(0deg);
    box-shadow: 0 14px 26px rgba(31, 42, 30, 0.09);
}

.mv-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.mv-card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.mv-list {
    list-style: none;
    margin-top: 0.9rem;
}

.mv-list li {
    margin-bottom: 0.45rem;
    padding-left: 1.2rem;
    position: relative;
    color: var(--muted-ink);
}

.mv-list li::before {
    content: '->';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.3rem;
    margin-bottom: 2.4rem;
}

.product-card {
    text-align: left;
    transition: none;
}

.product-card:nth-child(odd) {
    border-radius: 4px 26px 4px 20px;
}

.product-card:nth-child(even) {
    border-radius: 22px 6px 20px 6px;
}

.product-image {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px dashed var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(31, 42, 30, 0.12));
}

.product-details {
    padding: 0.2rem;
}

.product-details h3 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    margin-top: 0.3rem;
    color: var(--accent);
}

.product-specs {
    padding-left: 1.45rem;
}

.product-details .btn {
    margin-top: 1rem;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0.9rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.15rem;
}

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

.step-card {
    padding: 0.6rem;
    text-align: center;
}

.cooking-header {
    margin-top: 6rem;
}

.step-image-placeholder {
    width: 170px;
    height: 170px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px dashed var(--line);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.step-card:hover .step-image-placeholder {
    border-color: var(--accent);
    transform: rotate(-1.2deg);
}

.step-number {
    position: absolute;
    top: -12px;
    left: -10px;
    width: 34px;
    height: 34px;
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.step-content h3 {
    margin-bottom: 0.35rem;
    color: var(--ink);
    font-family: var(--font-display);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--muted-ink);
}

.check-icon {
    color: var(--primary);
    font-weight: 800;
}

.reasons-grid {
    display: grid;
    gap: 0.8rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    transition: transform 0.18s ease;
}

.reason-item:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}

.reason-icon {
    font-size: 1.3rem;
}

.location-box h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.location-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.3rem;
    padding: 2rem;
    background: rgba(255, 250, 240, 0.75);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.method-icon {
    font-size: 1.7rem;
}

.contact-method h4 {
    color: var(--muted-ink);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.contact-method p {
    font-size: 1.35rem;
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0;
}

.contact-image {
    margin-top: 1.5rem;
    min-height: 310px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.contact-form-container h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.contact-form .btn-primary {
    border: 0;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--muted-ink);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font-family: var(--font-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-status {
    min-height: 2rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 700;
}

.form-status.success {
    color: #444c20;
}

.form-status.error {
    color: #f6b031;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 111, 46, 0.16);
}
/* ── Nutrition Banner ── */
.nutrition-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url('images/19.webp') center / cover no-repeat;
    overflow: hidden;
}

.nutrition-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 30, 15, 0.88) 0%, rgba(15, 30, 15, 0.65) 40%, rgba(15, 30, 15, 0.15) 70%, transparent 100%);
    z-index: 1;
}

.nutrition-banner-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
}

.nutrition-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    max-width: 14ch;
    text-align: left;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.site-footer {
    padding: 3rem 2rem 2rem;
    background: 
        linear-gradient(rgba(68, 76, 32, 0.9), rgba(68, 76, 32, 0.9)),
        url('images/about%20banner.webp') center / cover no-repeat;
    color: #f4f6ef;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(180px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-brand p {
    max-width: 320px;
    color: rgba(244, 246, 239, 0.86);
    line-height: 1.9;
}

.footer-newsletter {
    display: flex;
    width: 100%;
    max-width: 420px;
    gap: 0.25rem;
}

.footer-newsletter input {
    flex: 1;
    border: none;
    border-radius: 999px 0 0 999px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: #f4f6ef;
}

.footer-newsletter input::placeholder {
    color: rgba(244, 246, 239, 0.65);
}

.footer-newsletter button {
    border: none;
    border-radius: 0 999px 999px 0;
    background: #c28a3d;
    color: #fff;
    min-width: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f6b031;
    color: #444c20;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.05rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #f6b031;
}

.footer-links a.active,
.footer-links a[aria-current="page"] {
    color: #f6b031;
    font-weight: 700;
}

.footer-contact li span,
.footer-contact li a {
    margin: 0;
    color: rgba(244, 246, 239, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-contact li>span:first-child {
    color: #f6b031;
}

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

.contact-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.75rem;
    align-items: center;
}

.contact-list li span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

/* Restore full address visibility: allow normal wrapping and breaking
   so the complete text is visible without truncation. */
.contact-list li {
    min-width: 0;
    /* allow grid children to shrink properly */
}

.contact-list li>*:nth-child(2) {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 420px) {
    .contact-list li>*:nth-child(2) {
        white-space: normal;
    }
}

.footer-bottom {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    color: rgba(244, 246, 239, 0.68);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(244, 246, 239, 0.72);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3em;
}

.footer-bottom a:hover,
.footer-bottom a.active,
.footer-bottom a[aria-current="page"] {
    color: #f6b031;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.legal-content p {
    color: var(--muted-ink);
}

.legal-content a {
    color: var(--accent);
    font-weight: 700;
}

.legal-updated {
    font-weight: 800;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 1400px) {
    :root {
        --container-width: 1280px;
    }

    .hero-container {
        gap: 4rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}

@media (max-width: 1280px) {
    :root {
        --container-width: 1080px;
    }

    .navbar-inner {
        padding-inline: 1.5rem;
    }

    .hero-section {
        padding: 2.6rem 1.5rem 3.6rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero-container {
        gap: 2.2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 1100px) {
    :root {
        --container-width: 940px;
    }

    .logo img {
        height: 90px;
    }

    .navbar.scrolled .logo img {
        height: 56px;
    }

    .nav-links a {
        font-size: 0.82rem;
        letter-spacing: 0.05em;
    }

    .nav-cta {
        padding: 0.55rem 1rem;
        font-size: 0.78rem;
    }

    .hero-container {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .steps-container {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --nav-height: 78px;
    }

    .hero-container,
    .section-grid,
    .contact-wrapper,
    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-subtitle,
    .hero-title {
        max-width: 100%;
    }

    .hero-actions,
    .stats {
        justify-content: center;
    }

    .image-wrapper {
        max-width: 440px;
        margin-inline: auto;
        transform: rotate(0.4deg);
    }

    .image-wrapper .glass-card {
        left: -0.8rem;
    }

    .features-row {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    }
}

@media (max-width: 820px) {
    .navbar {
        position: sticky;
    }

    .navbar-inner {
        height: 72px;
        padding-inline: 1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(245, 239, 227, 0.96);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(93, 103, 85, 0.16);
        box-shadow: 0 10px 25px rgba(31, 42, 30, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
        z-index: 110;
    }

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

    .nav-links a {
        font-size: 0.82rem;
        letter-spacing: 0.05em;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-section,
    .section,
    .site-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .section {
        padding-top: 4.2rem;
        padding-bottom: 4.2rem;
    }

    .action-panel {
        grid-template-columns: 1fr;
    }

    .action-panel-visual {
        margin-top: 1.5rem;
        order: -1;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .product-image {
        min-height: 230px;
    }

    .products-grid .product-card {
        display: flex;
        flex-direction: column;
    }

    .products-grid .product-image {
        order: -1;
    }

    .product-image img {
        max-height: none;
        height: 100%;
    }

    .step-image-placeholder {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 72px;
    }

    .navbar.scrolled .logo {
        margin-top: 4px;
    }

    .navbar.scrolled .logo img {
        height: 52px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .btn {
        width: auto;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.78rem;
    }

    .hero-actions,
    .action-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn,
    .action-buttons .btn {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .stats {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .stat-divider {
        display: none;
    }

    .products-grid,
    .features-row,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .product-card,
    .product-card:nth-child(odd),
    .product-card:nth-child(even) {
        border-radius: 10px;
    }

    .contact-wrapper {
        padding: 1rem;
    }

    .contact-method p {
        font-size: 1.15rem;
    }

    .image-wrapper .glass-card {
        position: static;
        margin-top: 0.9rem;
        animation: none;
    }

    .mv-card:nth-child(1),
    .mv-card:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 420px) {
    .navbar-inner {
        padding-inline: 0.75rem;
    }

    .logo img {
        height: 62px;
    }

    .navbar.scrolled .logo img {
        height: 46px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .hero-section {
        padding-top: 1.4rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .badge {
        padding: 0.38rem 0.65rem;
    }

    .badge-text {
        font-size: 0.66rem;
        letter-spacing: 0.06em;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .glass-card {
        padding: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
}

/* Recipes Grid & Cards */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
}

@media (min-width: 1200px) {
    .recipes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

.recipe-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:nth-child(odd) {
    border-radius: 6px 22px 6px 18px;
}

.recipe-card:nth-child(even) {
    border-radius: 20px 8px 16px 8px;
}

.recipe-card:nth-child(odd) .recipe-image,
.recipe-card:nth-child(odd) .recipe-image img {
    border-radius: 6px 22px 0 0;
}

.recipe-card:nth-child(even) .recipe-image,
.recipe-card:nth-child(even) .recipe-image img {
    border-radius: 20px 8px 0 0;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(31, 42, 30, 0.12);
}

.recipe-image {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    overflow: hidden;
}

.recipe-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recipe-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.5rem 0;
    color: var(--ink);
    line-height: 1.2;
}

.recipe-desc {
    font-size: 0.9rem;
    color: var(--muted-ink);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.recipe-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: var(--muted-ink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.recipe-meta i {
    color: var(--accent);
    font-size: 0.85rem;
}

.btn-sm {
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
    width: 100%;
}

.recipe-toggle {
    margin-top: auto;
    cursor: pointer;
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.82);
    color: var(--ink);
}

.recipe-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: none;
}

.recipe-details {
    display: none;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--line);
}

.recipe-details.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.recipe-details h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.recipe-details ul,
.recipe-details ol {
    margin: 0 0 1rem 0;
    padding-left: 1.3rem;
    color: var(--muted-ink);
    line-height: 1.8;
}

.recipe-details li {
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
}

body.recipe-modal-open {
    overflow: hidden;
}

.recipe-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.recipe-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.recipe-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 30, 0.58);
    backdrop-filter: blur(5px);
}

.recipe-lightbox__dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: min(86vh, 760px);
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.25fr);
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(205, 191, 168, 0.95);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(31, 42, 30, 0.34);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.24s ease;
}

.recipe-lightbox.active .recipe-lightbox__dialog {
    transform: translateY(0) scale(1);
}

.recipe-lightbox__close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 250, 240, 0.95);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.recipe-lightbox__close:hover,
.recipe-lightbox__close:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.recipe-lightbox__media {
    min-height: 100%;
    background: var(--paper);
    border-right: 1px solid var(--line);
}

.recipe-lightbox__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-lightbox__body {
    overflow-y: auto;
    padding: 2.2rem;
    min-height: 0;
}

.recipe-lightbox__header {
    padding-right: 3rem;
    margin-bottom: 1.2rem;
}

.recipe-lightbox__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 0.65rem;
}

.recipe-lightbox__desc {
    color: var(--muted-ink);
    margin-bottom: 0.9rem;
}

.recipe-lightbox__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
    color: var(--muted-ink);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recipe-lightbox__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.recipe-lightbox__meta i {
    color: var(--accent);
}

.recipe-lightbox__details {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
}

.recipe-lightbox__details h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    color: var(--ink);
}

.recipe-lightbox__details ul,
.recipe-lightbox__details ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
    color: var(--muted-ink);
    line-height: 1.75;
}

.recipe-lightbox__details li {
    margin-bottom: 0.45rem;
}

@media (max-width: 640px) {
    .recipe-lightbox {
        padding: 0.85rem;
    }

    .recipe-lightbox__dialog {
        max-height: 90vh;
        grid-template-columns: 1fr;
    }

    .recipe-lightbox__media {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .recipe-lightbox__media img {
        height: 190px;
    }

    .recipe-lightbox__body {
        padding: 1.4rem;
        min-height: 0;
        max-height: calc(90vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .recipe-lightbox__header {
        padding-right: 2.6rem;
    }
}

.hidden {
    display: none;
}

.recipe-preview {
    text-align: center;
    padding: 2rem;
}

.recipe-preview h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.recipe-preview p {
    color: var(--muted-ink);
    font-size: 0.95rem;
}

.page-hero.recipes {
    --hero-image: url('images/02.webp');
}

/* Farm to Fork process grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.process-item h4 {
    margin: 0.6rem 0 0.4rem 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
}

.process-item p {
    color: var(--muted-ink);
    font-size: 0.95rem;
    margin: 0;
}

/* Number badge used in the Farm to Fork steps */
.process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1;
}

.process-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
    overflow: hidden;
    min-height: 220px;
}

.process-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 0.75rem;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-item {
        flex-direction: column;
    }
    
    .process-image {
        flex: 0 0 auto;
        height: 200px;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
    }
    
    .process-image {
        flex: 0 0 auto;
        height: 180px;
    }
}

/* About page image styling */
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(31, 42, 30, 0.12));
    border-radius: 8px;
}

.recipe-banner-section {
    padding: 0;
    margin-bottom: 0;
}

.recipe-banner-section .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.recipe-banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.recipe-banner-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Our Source section with background image */
.our-source-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 239, 227, 0.88);
    pointer-events: none;
}

.our-source-section .container,
.our-source-section .section-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .about-image {
        order: -1;
    }

    .our-source-section {
        background-attachment: scroll;
    }
}

/* Why Choose Us section adjustments */
.why-choose-us-section .section-grid {
    align-items: center;
}

.why-choose-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.why-choose-us-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(31, 42, 30, 0.15));
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.why-choose-us-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 16px 36px rgba(31, 42, 30, 0.2));
}

@media (max-width: 992px) {
    .why-choose-us-image {
        margin-top: 1.5rem;
    }
}

/* Why Top Rice 4-column layout */
.why-top-rice-section .section-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .why-top-rice-section .section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-top-rice-section .section-grid {
        grid-template-columns: 1fr;
    }
}