:root {
    --charcoal: #1f2520;
    --moss: #556b2f;
    --leaf: #76923c;
    --saffron: #d9851b;
    --marigold: #f0b43c;
    --cream: #fff8ed;
    --paper: #ffffff;
    --clay: #9f3f1d;
    --muted: #6b6f66;
    --line: rgba(31, 37, 32, 0.14);
    --shadow: 0 20px 55px rgba(31, 37, 32, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--charcoal);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
    padding: 12px clamp(18px, 5vw, 72px);
    background: rgb(234 160 42 / 28%);
    border-bottom: 1px solid rgba(31, 37, 32, 0.08);
    backdrop-filter: blur(18px) saturate(135%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    color: var(--charcoal);
    white-space: nowrap;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #3e443d;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgb(238 149 8 / 28%);
    color: white;
}

.nav-toggle,
.nav-button {
    display: none;
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 84px);
    color: white;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 18vh;
    background: linear-gradient(transparent, var(--cream));
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 20, 12, 0.78), rgba(14, 20, 12, 0.36)),
        url("./turmeric.jpg") center/cover no-repeat;
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--saffron);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.intro-band h2,
.section-heading h2,
.split-content h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.02;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(4rem, 13vw, 9rem);
}

.hero-copy {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.btn.primary {
    background: var(--saffron);
    color: white;
    box-shadow: 0 12px 24px rgba(217, 133, 27, 0.28);
}

.btn.primary:hover {
    background: #c87513;
}

.btn.secondary {
    border-color: rgba(255, 255, 255, 0.42);
    color: white;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.intro-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 84px);
    background: var(--charcoal);
    color: white;
}

.intro-band h2,
.section-heading h2,
.split-content h2 {
    font-size: clamp(2rem, 4.7vw, 4rem);
}

.intro-band p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.section {
    padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 84px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:last-child {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    gap: 22px;
}

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

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

.feature-card,
.product-card,
.gallery-card,
.timeline-item,
.quality-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 240px;
    padding: 28px;
}

.feature-card span {
    color: var(--saffron);
    font-size: 0.82rem;
    font-weight: 800;
}

.feature-card h3,
.product-card h3,
.timeline-item h3,
.quality-panel h3 {
    margin: 12px 0 10px;
    color: var(--charcoal);
    font-size: 1.25rem;
    line-height: 1.25;
}

.feature-card p,
.product-card p,
.timeline-item p,
.quality-panel p {
    margin: 0;
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: 0 clamp(20px, 6vw, 84px) clamp(46px, 6vw, 82px);
}

.split-section.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.split-image {
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.split-content p:not(.section-kicker) {
    color: var(--muted);
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--clay);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 84px);
    background: #f6eddc;
}

.page-hero.compact {
    grid-template-columns: 1fr;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 6.8rem);
}

.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.13rem;
}

.page-hero.compact p {
    margin-inline: auto;
}

.page-hero img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-hero img[src$="logo.PNG"],
.split-image img[src$="logo.PNG"],
.product-card img[src$="logo.PNG"],
.gallery-card img[src$="logo.PNG"] {
    object-fit: contain;
    padding: clamp(24px, 5vw, 58px);
    background: var(--paper);
}

.timeline {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 24px;
}

.timeline-item strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--charcoal);
    color: white;
}

.product-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    overflow: hidden;
}

.product-card img,
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-card div {
    padding: 24px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 10px;
}

.product-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3ead8;
    color: #4d4e45;
    font-size: 0.8rem;
    font-weight: 800;
}

.quality-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: stretch;
}

.quality-panel {
    padding: 28px;
}

.report-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 26px;
    border-radius: 8px;
    background: var(--charcoal);
    color: white;
}

.report-cta h3 {
    margin: 0;
}

.report-cta p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.gallery-card {
    overflow: hidden;
}

.gallery-card figcaption {
    padding: 16px 18px;
    color: var(--muted);
    font-weight: 700;
}

.video-frame {
    overflow: hidden;
    border-radius: 8px;
    background: #10140e;
    box-shadow: var(--shadow);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    /* gap: 22px; */
    align-items: end;
    padding: 34px clamp(20px, 6vw, 84px);
    background: var(--charcoal);
    color: white;
}

.site-footer h2 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
    display: flex;
    gap: 18px;
}

.site-footer a {
    color: white;
    font-weight: 800;
    text-decoration: none;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .nav-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 8px;
        cursor: pointer;
    }

    .nav-button span,
    .nav-button span::before,
    .nav-button span::after {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--charcoal);
        content: "";
    }

    .nav-button span {
        position: relative;
    }

    .nav-button span::before,
    .nav-button span::after {
        position: absolute;
        left: 0;
    }

    .nav-button span::before {
        top: -7px;
    }

    .nav-button span::after {
        top: 7px;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 248, 237, 0.92);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .site-nav a {
        border-radius: 8px;
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }

    .intro-band,
    .split-section,
    .split-section.reverse,
    .page-hero,
    .quality-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid.three,
    .feature-grid.two,
    .product-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 70px;
    }

    .brand span {
        font-size: 0.98rem;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .site-nav {
        top: 70px;
    }

    .hero {
        min-height: calc(100vh - 70px);
    }

    .button-row,
    .report-cta,
    .site-footer,
    .site-footer nav {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .feature-grid.three,
    .feature-grid.two,
    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .product-card img,
    .gallery-card img,
    .split-image,
    .split-image img {
        min-height: 0;
        height: 230px;
    }

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