/* =============================================================
   Sankalp Organic Agro — Premium Organic Brand Stylesheet
   Designed by: QTC Infotech
   Fonts: Playfair Display (headings) + Poppins (UI) + Open Sans (body)
   Philosophy: Fresh, organic, minimal, premium.
   ============================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
    /* Greens */
    --green-950: #122b16;
    --green-900: #1b3a1f;
    --green-800: #244d2b;
    --green-700: #2d6033;    /* Primary brand */
    --green-600: #3a7a3f;
    --green-500: #549a5c;
    --green-400: #7fb084;
    --green-300: #b6d2b8;
    --green-200: #d7e6d6;
    --green-100: #e8f0e2;

    /* Cream / Ivory */
    --cream: #faf7f0;
    --cream-dark: #f0ead8;
    --ivory: #fefbf4;

    /* Earth accents */
    --earth-dark: #6b5237;
    --earth: #8b6f47;
    --earth-light: #b89c74;

    /* Gold */
    --gold: #c4a05a;
    --gold-dark: #a88744;

    /* Neutrals */
    --charcoal: #2a2f2b;
    --ink: #1d231e;
    --gray-700: #3f443f;
    --gray-500: #6b7168;
    --gray-400: #9a9f97;
    --gray-300: #d9d8cf;
    --gray-200: #ececdf;
    --gray-100: #f6f5ee;
    --white: #ffffff;

    /* Typography */
    --font-head: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-ui:   'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;

    /* Sizing */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 26px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(27,58,31,.06), 0 1px 2px rgba(27,58,31,.04);
    --shadow: 0 6px 16px rgba(27,58,31,.08), 0 2px 6px rgba(27,58,31,.05);
    --shadow-lg: 0 24px 48px rgba(27,58,31,.12), 0 6px 16px rgba(27,58,31,.07);
    --shadow-xl: 0 40px 80px rgba(27,58,31,.18), 0 12px 24px rgba(27,58,31,.10);

    /* Layout */
    --container: 1240px;
    --container-narrow: 960px;
    --gutter: clamp(16px, 2.4vw, 28px);

    /* Timing */
    --ease: cubic-bezier(.2,.7,.2,1);
    --dur: .35s;
}

/* ---------- 2. Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img,svg,video { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--green-500); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { padding-left: 1.1rem; margin: 0 0 1rem; }
p { margin: 0 0 1rem; }
hr { border: 0; border-top: 1px solid var(--gray-200); margin: 2rem 0; }
:focus-visible { outline: 2px solid var(--green-500); outline-offset: 3px; }

/* ---------- 3. Typography ---------- */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-head);
    color: var(--green-900);
    margin: 0 0 .7em;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.2rem; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green-600);
    padding: 6px 14px;
    background: var(--green-100);
    border-radius: 100px;
    margin-bottom: 1rem;
}
.lead { font-size: 1.12rem; color: var(--gray-700); }
.text-center { text-align: center; }
.muted { color: var(--gray-500); }

/* ---------- 4. Layout helpers ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 6vw, 70px) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--green-900); color: var(--green-100); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--white); }
.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.split { display: grid; gap: clamp(30px, 4vw, 70px); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Section Heading Block */
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }

/* Decorative leaf divider */
.leaf-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 20px 0; color: var(--green-500);
}
.leaf-divider::before,.leaf-divider::after {
    content: ''; height: 1px; width: 60px; background: linear-gradient(to right, transparent, var(--green-400), transparent);
}

/* ---------- 5. Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-weight: 600; font-size: .92rem;
    letter-spacing: .03em;
    border-radius: 100px;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45,96,51,.28);
}
.btn-primary:hover {
    background: var(--green-800);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(45,96,51,.38);
}
.btn-outline {
    border-color: var(--green-700);
    color: var(--green-700);
    background: transparent;
}
.btn-outline:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(196,160,90,.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(196,160,90,.45); color: var(--white); }
.btn-ghost { color: var(--green-700); }
.btn-ghost:hover { color: var(--green-500); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- 6. Top Bar ---------- */
.topbar {
    background: var(--green-900);
    color: var(--green-100);
    font-family: var(--font-ui);
    font-size: .82rem;
    padding: 9px 0;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
.topbar a { color: var(--green-100); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 14px; }

/* ---------- 7. Header / Navigation ---------- */
.site-header {
    position: sticky; top: 0;
    z-index: 90;
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(1.2) blur(8px);
    -webkit-backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img,
.brand .logo-img {
    height: 76px; width: 128px;
    object-fit: contain;
    display: block;
}
.brand picture { display: inline-flex; }
@media (max-width: 420px) {
    .brand img, .brand .logo-img { height: 58px; width: 98px; }
}
/* Give the sticky header a little more vertical room to fit the larger logo */
.nav-wrap { padding: 12px 0; }
.nav-menu { display: flex; list-style: none; gap: 6px; margin: 0; padding: 0; align-items: center; }
.nav-menu a {
    display: inline-block;
    padding: 10px 16px;
    font-family: var(--font-ui);
    font-size: .94rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: 8px;
    position: relative;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--green-700); }
.nav-menu a.active::after {
    content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
    height: 2px; border-radius: 2px; background: var(--green-500);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
    display: none; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 8px; background: var(--green-100);
}
.hamburger span {
    width: 22px; height: 2px; background: var(--green-900);
    position: relative; transition: var(--dur) var(--ease);
}
.hamburger span::before,
.hamburger span::after {
    content: ''; position: absolute; left: 0; width: 22px; height: 2px;
    background: var(--green-900); transition: var(--dur) var(--ease);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.nav-open .hamburger span { background: transparent; }
.nav-open .hamburger span::before { top: 0; transform: rotate(45deg); }
.nav-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: min(82vw, 340px); height: 100vh;
        flex-direction: column; align-items: stretch;
        background: var(--white);
        padding: 100px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: right var(--dur) var(--ease);
        overflow-y: auto; gap: 0;
    }
    .nav-open .nav-menu { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
    .nav-menu a.active::after { display: none; }
    .nav-menu a.active { background: var(--green-100); }
    .nav-cta .btn { display: none; }
    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: ''; position: fixed; inset: 0;
        background: rgba(27,58,31,.45);
        z-index: 80;
    }
}

/* ---------- 8. Hero ---------- */
.hero {
    position: relative;
    padding: clamp(70px, 12vw, 140px) 0 clamp(80px, 12vw, 140px);
    background:
        radial-gradient(ellipse at 90% 10%, rgba(196,160,90,.12), transparent 60%),
        radial-gradient(ellipse at 10% 90%, rgba(127,176,132,.18), transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><g opacity='0.06' fill='%233a7a3f'><path d='M100 80 C 150 10, 230 40, 210 120 C 170 140, 110 130, 100 80 Z'/><path d='M420 420 C 470 360, 550 390, 530 470 C 490 490, 430 480, 420 420 Z'/></g></svg>");
    background-size: 700px; background-repeat: repeat;
    pointer-events: none; opacity: .6;
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: clamp(40px, 5vw, 80px); align-items: center;
    position: relative; z-index: 2;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--green-700); font-style: italic; }
.hero-sub { font-size: 1.12rem; color: var(--gray-700); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap; padding-top: 24px;
    border-top: 1px dashed var(--green-300);
}
.hero-trust .stat strong {
    display: block; font-family: var(--font-head);
    font-size: 1.9rem; color: var(--green-800); line-height: 1;
}
.hero-trust .stat span {
    display: block; font-family: var(--font-ui); font-size: .8rem;
    color: var(--gray-600); margin-top: 6px; letter-spacing: .08em; text-transform: uppercase;
}
.hero-visual {
    position: relative;
    aspect-ratio: 1/1.05;
    max-width: 520px; margin-inline: auto;
}
.hero-visual .photo {
    position: absolute; inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.18), transparent 55%),
        linear-gradient(135deg, #d8e6d4, #eef3dd);
    overflow: hidden;
    box-shadow: var(--shadow-xl), inset 0 0 0 12px rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
}
.hero-visual .photo svg { width: 70%; }
.hero-visual .photo picture,
.hero-visual .photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.hero-visual .badge {
    position: absolute; padding: 14px 18px;
    background: var(--white); border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-ui); font-size: .85rem;
    font-weight: 500; color: var(--green-900);
}
.hero-visual .badge-1 { top: 6%; left: -4%; }
.hero-visual .badge-2 { bottom: 8%; right: -2%; }
.hero-visual .badge-3 { top: 48%; right: -6%; }
.hero-visual .badge .ic {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--green-100); color: var(--green-700);
    display: flex; align-items: center; justify-content: center;
}
.hero-visual .badge .ic svg { width: 22px; height: 22px; }

/* Showcase photo strip (portfolio hero, about cross-section)
   Uses object-fit: cover with the re-cropped landscape hero image that
   has no logo at top — so cover-crop doesn't lose important content. */
.showcase {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/7;
    box-shadow: var(--shadow-lg);
    background: #faf7f0;
}
.showcase img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.showcase-caption {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: clamp(24px, 4vw, 50px);
    background: linear-gradient(to top, rgba(18,43,22,.85) 0%, rgba(18,43,22,.25) 60%, transparent 100%);
    color: #fff;
}
@media (max-width: 720px) { .showcase { aspect-ratio: 4/3; } }

/* Product card visual — uniform centered display */
.product-card .product-media {
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card .product-media picture { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-card .product-media img { width: 100%; height: 100%; object-fit: cover; }

/* Currently unavailable badge (for Pickled Garlic) */
.product-card.product-unavailable { position: relative; }
.product-card.product-unavailable .unavailable-badge {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    background: linear-gradient(135deg, #c74f3a, #a13d2c);
    color: #fff;
    font-family: var(--font-ui); font-size: .72rem; font-weight: 700;
    padding: 7px 14px; border-radius: 100px;
    letter-spacing: .08em; text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(199,79,58,.35);
    transform: rotate(3deg);
}
.product-card.product-unavailable:hover .unavailable-badge {
    transform: rotate(0deg) scale(1.04);
    transition: transform var(--dur) var(--ease);
}

/* Reusable photo card (About, Services, etc.) */
.about-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #e8f0e2, #f0ead8);
}
.about-photo picture, .about-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo-caption {
    position: absolute; left: 20px; right: 20px; bottom: 20px;
    background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow);
}
.about-photo-caption .ic {
    width: 44px; height: 44px; flex: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.about-photo-caption strong {
    display: block; font-family: var(--font-head);
    color: var(--green-900); font-size: 1rem;
}
.about-photo-caption span {
    display: block; font-size: .85rem; color: var(--gray-500);
    font-family: var(--font-ui);
}

/* ---------- 9. Page banner (inner pages) ---------- */
.page-banner {
    position: relative;
    padding: clamp(90px, 10vw, 150px) 0 clamp(60px, 7vw, 90px);
    background:
        linear-gradient(135deg, rgba(27,58,31,.88), rgba(45,96,51,.72)),
        radial-gradient(ellipse at 20% 40%, rgba(196,160,90,.28), transparent 55%),
        url('../images/bg/page-banner.jpg') center/cover,
        linear-gradient(135deg, #254e2c, #3a7a3f);
    color: var(--white);
    overflow: hidden;
}
.page-banner::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 64px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'><path fill='%23ffffff' d='M0 32 C 240 10, 480 60, 720 40 C 960 20, 1200 56, 1440 30 L 1440 64 L 0 64 Z'/></svg>") center/cover no-repeat;
}
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner p { color: var(--green-100); max-width: 620px; margin: 0 auto; }
.page-banner .container { position: relative; z-index: 2; text-align: center; }
.breadcrumb {
    display: inline-flex; gap: 8px; margin-bottom: 18px;
    font-family: var(--font-ui); font-size: .82rem;
    color: var(--green-100); letter-spacing: .12em; text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--green-300); opacity: .7; }

/* ---------- 10. Feature / Service Cards ---------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-700));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-700);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: all var(--dur) var(--ease);
}
.feature-card:hover .icon {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white);
}
.feature-card .icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-600); font-size: .97rem; margin-bottom: 0; }

/* ---------- 11. Product / Portfolio Cards ---------- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
    border: 1px solid var(--gray-100);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.product-media img,
.product-media svg { width: 70%; height: 70%; object-fit: contain; transition: transform var(--dur) var(--ease); }
.product-card:hover .product-media img,
.product-card:hover .product-media svg { transform: scale(1.06); }
.product-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--green-700); color: var(--white);
    font-family: var(--font-ui); font-size: .7rem;
    font-weight: 600; padding: 5px 12px; border-radius: 100px;
    letter-spacing: .1em; text-transform: uppercase;
}
.product-body { padding: 22px 24px 26px; }
.product-body h3 { font-size: 1.22rem; margin-bottom: 6px; }
.product-body .meta {
    font-family: var(--font-ui); font-size: .8rem;
    color: var(--green-600); letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: 12px;
}
.product-body p { font-size: .92rem; color: var(--gray-600); margin-bottom: 14px; }
.product-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px dashed var(--gray-200);
}
.price {
    font-family: var(--font-head); font-size: 1.25rem;
    color: var(--green-800); font-weight: 700;
}
.price small { font-family: var(--font-ui); font-size: .7rem; color: var(--gray-500); font-weight: 500; }

/* ---------- 12. Stats Band ---------- */
.stats-band {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: var(--white);
    padding: 60px 0;
    position: relative; overflow: hidden;
}
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(196,160,90,.22), transparent 50%);
    pointer-events: none;
}
.stats-band .container { position: relative; z-index: 2; }
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px; text-align: center;
}
.stat-item strong {
    display: block; font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold);
    line-height: 1;
}
.stat-item span {
    display: block; font-family: var(--font-ui);
    margin-top: 10px; font-size: .9rem;
    color: var(--green-100); letter-spacing: .12em;
    text-transform: uppercase;
}

/* ---------- 13. Process Steps ---------- */
.process {
    position: relative; counter-reset: step;
    display: grid; gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step {
    background: var(--white); border: 1px solid var(--gray-200);
    padding: 40px 28px 28px; border-radius: var(--radius-lg);
    position: relative;
}
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute; top: -22px; left: 28px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: var(--white); font-family: var(--font-head);
    font-size: 1.3rem; font-weight: 700;
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 22px rgba(45,96,51,.28);
}
.step h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.step p { color: var(--gray-600); font-size: .95rem; margin: 0; }

/* Process Card (Home — From Farm to Kitchen with images) */
.process-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
    display: flex; flex-direction: column;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.process-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}
.process-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.process-card:hover .process-img img { transform: scale(1.05); }
.process-num {
    position: absolute; top: 14px; left: 14px;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: var(--white); font-family: var(--font-head);
    font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px rgba(45,96,51,.35);
}
.process-card h3 { padding: 20px 22px 0; font-size: 1.2rem; margin-bottom: 6px; }
.process-card p { padding: 0 22px 22px; color: var(--gray-600); font-size: .93rem; margin: 0; }

/* Core Values — redesigned pill-row layout */
.values-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.value-pill {
    display: flex; gap: 20px;
    padding: 26px 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(196,160,90,.2);
    border-radius: var(--radius-lg);
    transition: all var(--dur) var(--ease);
}
.value-pill:hover {
    background: rgba(196,160,90,.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.value-pill .value-num {
    flex: none;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--green-950);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.3rem; font-weight: 700;
    box-shadow: 0 8px 20px rgba(196,160,90,.3);
}
.value-pill h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.value-pill p { color: var(--green-200); font-size: .94rem; margin: 0; }

/* Keyword tags / SEO tag cloud */
.keyword-tags { text-align: center; }
.tag-cloud {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin-top: 16px;
}
.tag-cloud a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--green-200);
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: .82rem;
    font-weight: 500;
    color: var(--green-700);
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}
.tag-cloud a:hover {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45,96,51,.22);
}

/* ---------- 14. Testimonial Card ---------- */
.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px 30px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--dur) var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial::before {
    content: '\201C';
    position: absolute; top: 10px; right: 24px;
    font-family: var(--font-head); font-size: 5rem;
    color: var(--green-100); line-height: 1;
}
.testimonial .quote { font-size: 1rem; color: var(--gray-700); font-style: italic; margin-bottom: 20px; }
.testimonial .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial .author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px dashed var(--gray-200); }
.testimonial .avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-700));
    color: var(--white); font-family: var(--font-head);
    font-weight: 700; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.testimonial .name { font-family: var(--font-head); color: var(--green-900); font-weight: 700; }
.testimonial .role { font-size: .82rem; color: var(--gray-500); font-family: var(--font-ui); }

/* Rich testimonial with accompanying food/kitchen image */
.testimonial-rich {
    display: grid; grid-template-columns: 220px 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--dur) var(--ease);
}
.testimonial-rich:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-rich-img { position: relative; overflow: hidden; background: var(--cream-dark); }
.testimonial-rich-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-rich-body { padding: 28px 28px 26px; display: flex; flex-direction: column; }
.testimonial-rich-body .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-rich-body .quote { font-style: italic; color: var(--gray-700); margin-bottom: 18px; font-size: .97rem; flex: 1; }
.testimonial-rich-body .author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--gray-200); }
.testimonial-rich-body .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-700));
    color: var(--white); font-family: var(--font-head);
    font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.testimonial-rich-body .name { font-family: var(--font-head); color: var(--green-900); font-weight: 700; font-size: .98rem; }
.testimonial-rich-body .role { font-size: .78rem; color: var(--gray-500); font-family: var(--font-ui); }
@media (max-width: 640px) { .testimonial-rich { grid-template-columns: 1fr; } .testimonial-rich-img { aspect-ratio: 16/9; } }

/* Kitchen-strip thumbnails (testimonials intro) */
.kitchen-strip {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.kitchen-strip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.kitchen-strip:hover img { transform: scale(1.05); }
.kitchen-strip span {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(18,43,22,.88); color: #fff;
    padding: 6px 14px; border-radius: 100px;
    font-family: var(--font-ui); font-size: .78rem;
    font-weight: 600; letter-spacing: .08em;
}

/* ---------- 15. FAQ ---------- */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 14px;
    transition: all var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%; text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 24px; font-family: var(--font-ui);
    font-weight: 600; font-size: 1.02rem; color: var(--green-900);
    background: transparent;
}
.faq-q .plus {
    width: 32px; height: 32px; flex: none;
    border-radius: 50%; background: var(--green-100); color: var(--green-700);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--dur) var(--ease); font-size: 1.1rem;
}
.faq-item.open .plus { background: var(--green-700); color: var(--white); transform: rotate(135deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a > div {
    padding: 0 24px 22px;
    color: var(--gray-700); font-size: .98rem;
}

/* ---------- 16. Contact Form ---------- */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: clamp(30px, 4vw, 60px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
    background: linear-gradient(135deg, var(--green-800), var(--green-900));
    color: var(--white); border-radius: var(--radius-lg);
    padding: 42px 36px;
    position: relative; overflow: hidden;
}
.info-card::before {
    content: ''; position: absolute; bottom: -50px; right: -50px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,160,90,.22), transparent 60%);
}
.info-card h3 { color: var(--white); }
.info-card .info-list { list-style: none; padding: 0; margin: 28px 0 0; position: relative; }
.info-card .info-list li {
    display: flex; gap: 16px; padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .95rem; color: var(--green-100);
}
.info-card .info-list li:last-child { border-bottom: 0; }
.info-card .info-list .ic {
    flex: none; width: 42px; height: 42px;
    border-radius: 12px; background: rgba(196,160,90,.18);
    color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.info-card .info-list .ic svg { width: 20px; height: 20px; }
.info-card strong { display: block; font-family: var(--font-ui); font-weight: 600; color: var(--white); margin-bottom: 2px; }
.info-card a { color: var(--green-100); }
.info-card a:hover { color: var(--gold); }

.form-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 42px 36px;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-family: var(--font-ui); font-size: .85rem;
    font-weight: 600; color: var(--green-800); margin-bottom: 7px;
}
.form-control {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    font-family: var(--font-body); font-size: .96rem; color: var(--ink);
    background: var(--ivory);
    transition: all var(--dur) var(--ease);
}
.form-control:focus {
    outline: 0; border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(84,154,92,.18);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-note {
    font-size: .82rem; color: var(--gray-500);
    margin-top: 14px; font-family: var(--font-ui);
}

/* ---------- 17. Alert ---------- */
.alert {
    padding: 14px 18px; border-radius: var(--radius);
    font-family: var(--font-ui); font-size: .92rem;
    margin-bottom: 18px;
}
.alert-success { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-300); }
.alert-error { background: #fce8e8; color: #8a1f1f; border: 1px solid #eab5b5; }

/* ---------- 18. CTA Strip ---------- */
.cta-strip {
    position: relative;
    background:
        linear-gradient(135deg, rgba(27,58,31,.92), rgba(58,122,63,.82)),
        radial-gradient(ellipse at 80% 0%, rgba(196,160,90,.35), transparent 50%),
        url('../images/bg/cta-garlic.jpg') center/cover,
        linear-gradient(135deg, #2d6033, #3a7a3f);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 70px) clamp(30px, 5vw, 70px);
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { color: var(--green-100); max-width: 600px; margin: 0 auto 28px; }

/* ---------- 19. Footer ---------- */
.footer {
    background: var(--green-950);
    color: var(--green-100);
    padding: 80px 0 0;
    font-size: .94rem;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: .92rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: 20px;
}
.footer .brand img,
.footer .brand .logo-img-footer {
    height: 140px; width: 140px;
    margin-bottom: 18px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}
.footer .brand picture { display: inline-flex; }
.footer p { color: var(--green-200); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--green-100); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '\203A'; color: var(--gold); transition: transform var(--dur) var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { transform: translateX(3px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; color: var(--green-200); }
.footer-contact .ic {
    flex: none; width: 36px; height: 36px; border-radius: 10px;
    background: rgba(196,160,90,.15); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.footer-contact .ic svg { width: 18px; height: 18px; }
.footer-contact a { color: var(--green-100); }
.footer-contact a:hover { color: var(--gold); }

/* ---------- Certificate Page ---------- */
.certificate-section {
    background:
        linear-gradient(180deg, rgba(250,247,240,.78), rgba(255,255,255,.98)),
        var(--ivory);
}
.certificate-intro {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}
.certificate-intro h2 {
    margin-bottom: 12px;
}
.certificate-intro p {
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto 22px;
}
.certificate-viewer {
    overflow: hidden;
    border: 1px solid rgba(45,96,51,.16);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.certificate-viewer iframe {
    display: block;
    width: 100%;
    height: min(78vh, 860px);
    min-height: 620px;
    border: 0;
}
@media (max-width: 767px) {
    .certificate-viewer {
        border-radius: var(--radius-lg);
    }
    .certificate-viewer iframe {
        height: 72vh;
        min-height: 520px;
    }
}
.social {
    display: flex; gap: 10px; margin-top: 22px;
}
.social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: var(--green-100);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--dur) var(--ease);
}
.social a:hover { background: var(--gold); color: var(--green-950); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    color: var(--green-300); font-size: .85rem;
}
.footer-bottom a { color: var(--green-200); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- 20. Back to top + Floating WhatsApp ---------- */
.back-to-top {
    position: fixed; bottom: 26px; right: 26px; z-index: 70;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--green-700); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0; pointer-events: none;
    transform: translateY(20px);
    transition: all var(--dur) var(--ease);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green-800); color: var(--white); transform: translateY(-4px); }

.wa-float {
    position: fixed; bottom: 26px; left: 26px; z-index: 70;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.35);
    transition: all var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); color: var(--white); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- 21. Content pages (policy/disclaimer) ---------- */
.content-page h2 { margin-top: 2.2em; }
.content-page h3 { color: var(--green-700); font-size: 1.2rem; margin-top: 1.8em; }
.content-page p, .content-page li { color: var(--gray-700); }
.content-page ul { padding-left: 1.4rem; }
.content-page ul li { margin-bottom: 8px; }
.toc {
    background: var(--cream); padding: 24px 28px;
    border-left: 4px solid var(--green-500);
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.toc h4 { color: var(--green-800); font-family: var(--font-ui); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.toc ol { padding-left: 1.4rem; margin: 0; }
.toc a { color: var(--green-700); }

/* ---------- 22. Reveal on scroll ---------- */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ---------- 23. Utility ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.hidden { display: none !important; }

@media print {
    .site-header, .footer, .back-to-top, .wa-float { display: none; }
    body { color: #000; background: #fff; }
}
