/* Vanguard Exim Global — stylesheet (Phase 2: full public shell).
   Hand-written, mobile-first, no build step. */

:root {
    --green: #1c5a3a;
    --green-dark: #123f28;
    --green-deep: #0b2a1b;
    --green-light: #e8f0e9;
    --lime: #c8a44d;          /* repurposed as brass / gold accent */
    --lime-dark: #a9863a;
    --gold: #c8a44d;
    --gold-soft: #e6cf9a;
    --accent: #c8a44d;
    --ink: #22261f;
    --muted: #636b5e;
    --bg: #ffffff;
    --bg-soft: #f5f2ea;
    --cream: #f6f1e6;
    --cream-deep: #ece4d3;
    --border: #e6ded0;
    --font-script: "Playfair Display", Georgia, serif;
    --radius: 6px;
    --radius-lg: 10px;
    --shadow: 0 12px 34px rgba(11, 42, 27, .10);
    --shadow-lg: 0 30px 70px rgba(11, 42, 27, .18);
    --maxw: 1200px;
    --header-h: 84px;
    --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.22; font-family: var(--font-head); font-weight: 600; letter-spacing: -0.005em; }
h2 strong, h1 strong { font-style: italic; font-weight: 600; color: var(--gold); }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 92px 0; position: relative; }
.section.alt { background: var(--cream); }
.section.cream { background: var(--cream); }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 0 0 14px; }
.section-intro { color: var(--muted); max-width: 720px; margin: 0 0 44px; font-size: 1.06rem; }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .26em;
    font-size: .73rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 16px;
}
.eyebrow::before {
    content: "";
    width: 34px; height: 1px;
    background: currentColor;
}
.text-center .eyebrow { justify-content: center; }
.text-center .eyebrow::after {
    content: "";
    width: 34px; height: 1px;
    background: currentColor;
}
.eyebrow.on-dark { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .96rem;
    border: 2px solid var(--green);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18,135,74,.28);
    transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { text-decoration: none; background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(18,135,74,.35); }
.btn.btn-lime { background: var(--lime); border-color: var(--lime); color: var(--green-deep); box-shadow: 0 10px 24px rgba(143,199,64,.4); }
.btn.btn-lime:hover { background: var(--lime-dark); border-color: var(--lime-dark); color: #fff; }
.btn.ghost { background: transparent; color: var(--green-dark); box-shadow: none; }
.btn.ghost:hover { background: var(--green); color: #fff; }
.btn.on-dark { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn.on-dark:hover { background: rgba(255,255,255,.9); }
.btn.ghost.on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost.on-dark:hover { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 6px 24px rgba(7, 42, 25, .10);
}
/* Bannerless pages (e.g. 404): first section must clear the fixed header. */
body:not(.home) main > .section:first-child { padding-top: calc(var(--header-h) + 48px); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: #fff; font-family: var(--font-head); transition: color .35s; }
.brand:hover { text-decoration: none; }
.scrolled .brand { color: var(--green-dark); }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #fff;
    border-radius: 12px;
    font-size: 1rem; font-weight: 800;
    box-shadow: 0 6px 16px rgba(18,135,74,.35);
}
.brand-text { font-size: 1.2rem; letter-spacing: -0.02em; }
.brand-logo { max-height: 46px; width: auto; }

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-list > li > a {
    display: block;
    padding: 9px 15px;
    color: rgba(255,255,255,.92);
    font-weight: 600;
    font-size: .93rem;
    border-radius: 9px;
    transition: color .2s, background .2s;
}
.scrolled .nav-list > li > a { color: var(--ink); }
.nav-list > li > a:hover { text-decoration: none; color: #fff; }
.scrolled .nav-list > li > a:hover { color: var(--green-dark); background: var(--green-light); }
.caret { font-size: .7em; opacity: .7; }

.nav-cta {
    margin-left: 8px;
    background: var(--lime);
    color: var(--green-deep) !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(143,199,64,.4);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #fff; color: var(--green-dark) !important; transform: translateY(-2px); }

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 10px 0 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 60;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    color: var(--ink);
    font-weight: 500;
}
.dropdown li a:hover { background: var(--green-light); color: var(--green-dark); text-decoration: none; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 11px;
    cursor: pointer;
}
.scrolled .nav-toggle { background: var(--green-light); border-color: var(--border); }
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: #fff;
    transition: transform .2s;
}
.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero (home) ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 0 80px;
    background:
        radial-gradient(1200px 700px at 70% -10%, rgba(143,199,64,.35), transparent 60%),
        radial-gradient(900px 600px at 10% 110%, rgba(18,135,74,.55), transparent 55%),
        linear-gradient(150deg, #0b3d24 0%, #0c6338 45%, #0b5230 100%);
    overflow: hidden;
}
.hero::after {
    /* subtle dot texture */
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero .container { position: relative; z-index: 3; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; margin-bottom: 26px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    font-size: .82rem; font-weight: 600; letter-spacing: .04em;
    backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(143,199,64,.3); }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.hero h1 .accent {
    background: linear-gradient(120deg, var(--lime), #dff2b0);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 660px; margin: 0 auto 34px; opacity: .92; font-weight: 400; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
    display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
    margin-top: 46px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: .9rem; opacity: .9;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .ic { color: var(--lime); font-size: 1.1rem; }
.scroll-cue {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,.7); font-size: 1.6rem;
    animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* Stats strip */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat { padding: 26px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat .num { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; font-family: var(--font-head); background: linear-gradient(120deg, var(--green), var(--lime-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--muted); font-size: .95rem; margin-top: 4px; }

/* ---------- Page banner / breadcrumbs ---------- */
.page-banner {
    position: relative;
    background: linear-gradient(140deg, var(--green-deep), var(--green-dark));
    color: #fff;
    padding: calc(var(--header-h) + 74px) 0 74px;
    overflow: hidden;
    text-align: center;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 600; margin: 16px 0 0; }
.banner-orn { display: inline-block; position: relative; width: 120px; height: 14px; margin: 14px 0 6px; }
.banner-orn::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.banner-orn::after { content: "❧"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); color: var(--gold); font-size: 1.1rem; line-height: 1; }
.page-banner-sub { opacity: .9; max-width: 640px; margin: 10px auto 0; font-size: 1.06rem; }
.breadcrumbs { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.breadcrumbs a { color: var(--gold-soft); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 9px; opacity: .5; }
.breadcrumbs [aria-current] { color: rgba(255,255,255,.75); }

/* ---------- Tiles / cards ---------- */
.tiles, .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.tile, .card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--ink);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.tile:hover, .card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
.card-media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--green-light), #d9ebd9);
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.1rem;
}
.card-body { padding: 18px 20px; }
.card-body h3 { margin: 0 0 6px; color: var(--green-dark); }
.card-body p { margin: 0; color: var(--muted); }
.card-tag {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.tile { padding: 26px; }
.tile h3 { margin: 0 0 6px; color: var(--green-dark); }
.tile p { margin: 0; color: var(--muted); }

/* ---------- Feature grid (Why Vanguard Exim Global) ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.feature { padding: 6px; }
.feature .icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--muted); }

/* ---------- IBM process steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px 22px;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px; left: 22px;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow);
}
.step h3 { margin: 6px 0 6px; font-size: 1.1rem; color: var(--green-dark); }
.step p { margin: 0; color: var(--muted); }

/* ---------- Split / prose ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.media-box {
    aspect-ratio: 5 / 4;
    background: linear-gradient(135deg, var(--green-light), #cfe6cf);
    border-radius: var(--radius);
    display: grid; place-items: center;
    color: var(--green-dark);
    font-weight: 600;
}
.prose { max-width: 760px; font-size: 1.08rem; }
.prose h2 { margin-top: 1.7em; font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h3 { margin-top: 1.4em; font-size: 1.3rem; }
.prose p, .prose li { color: #3a4238; }
.prose p { margin: 0 0 1.3em; }
/* Classical drop cap on the opening paragraph */
.prose > p:first-of-type::first-letter {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 3.6em;
    float: left;
    line-height: .78;
    padding: 6px 12px 0 0;
    color: var(--green);
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: .6em; }
.prose ul li::before {
    content: "❧"; position: absolute; left: 0; top: 0;
    color: var(--gold); font-size: .95em;
}
.prose blockquote {
    margin: 1.6em 0; padding: 6px 0 6px 26px;
    border-left: 3px solid var(--gold);
    font-family: var(--font-head); font-style: italic; font-size: 1.3rem;
    color: var(--green-dark);
}
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
    width: 140px; height: 140px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--gold);
    box-shadow: 0 0 0 6px var(--cream);
    display: grid; place-items: center;
    color: var(--green);
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: .02em;
}
.team-card h3 { margin: 0 0 2px; }
.team-card .role { color: var(--green); font-weight: 600; font-size: .92rem; }
.team-card .bio { color: var(--muted); font-size: .92rem; }

/* ---------- Timeline ---------- */
.timeline { border-left: 3px solid var(--green-light); padding-left: 26px; margin: 10px 0; }
.timeline .t-item { position: relative; padding-bottom: 28px; }
.timeline .t-item::before {
    content: "";
    position: absolute; left: -33px; top: 4px;
    width: 14px; height: 14px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid #fff;
}
.timeline .year { font-weight: 800; color: var(--green-dark); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    font: inherit;
    background: #fff;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.info-card h3 { margin-top: 0; }
.info-item { margin-bottom: 16px; }
.info-item .k { font-weight: 700; color: var(--green-dark); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.notice {
    padding: 14px 18px;
    border-radius: 9px;
    margin-bottom: 20px;
    font-size: .95rem;
}
.notice.info { background: var(--green-light); color: var(--green-dark); }
.notice.error { background: #fdecea; color: #c0392b; }

/* ---------- Detail (product) ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.detail-media {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--green-light), #cfe6cf);
    border-radius: var(--radius);
    display: grid; place-items: center;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.4rem;
}
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); }
.spec-table th { width: 40%; color: var(--muted); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
    background:
        radial-gradient(600px 300px at 90% 0%, rgba(143,199,64,.10), transparent 60%),
        linear-gradient(180deg, var(--green-deep), #061e12);
    color: #cdd8d0;
    border-top: 3px solid var(--lime);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 66px 20px 46px;
}
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; margin-bottom: 14px; }
.footer-about p { color: #9fb0a4; margin: 0; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #b9c7bd; font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a { color: #b9c7bd; font-size: .9rem; }
.footer-social a:hover { color: #fff; }
.footer-bar { border-top: 1px solid #26362b; }
.footer-bar p { margin: 0; padding: 18px 0; font-size: .88rem; color: #8a9b8e; text-align: center; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 80;
    transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.08); text-decoration: none; }

/* ---------- Error page ---------- */
.error-page { text-align: center; padding: 60px 0; }
.error-page h1 { font-size: 5rem; margin: 0; color: var(--green); }

/* ================= Agriculture-theme premium touches ================= */

/* Curved wave divider — sits at the top of a coloured section, filled with the
   colour of the section ABOVE it so the join reads as an organic curve. */
.wave-top { position: relative; }
.wave-top::before {
    content: "";
    position: absolute; top: -1px; left: 0; right: 0; height: 62px;
    background: var(--wave-color, #fff);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 62' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V30 C1080,62 360,62 0,30 Z'/%3E%3C/svg%3E") no-repeat center top / 100% 100%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 62' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V30 C1080,62 360,62 0,30 Z'/%3E%3C/svg%3E") no-repeat center top / 100% 100%;
    z-index: 3;
}

/* Rotating certification-style seal (classic ag-theme flourish). */
.seal {
    position: absolute;
    width: 128px; height: 128px;
    display: grid; place-items: center;
    z-index: 4;
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.seal .seal-core {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--lime); color: var(--green-deep);
    display: grid; place-items: center; font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.seal text { fill: rgba(255,255,255,.9); font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero .seal { right: 6%; bottom: 13%; }
@media (max-width: 900px) { .hero .seal { display: none; } }

/* Organic blob decoration */
.blob {
    position: absolute; z-index: 0; pointer-events: none;
    filter: blur(2px); opacity: .5;
}

/* Animated skill / progress bars */
.skills { display: grid; gap: 20px; margin-top: 26px; }
.skill-head { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 8px; font-family: var(--font-head); }
.skill-head .pct { color: var(--green); }
.skill-bar { height: 10px; border-radius: 999px; background: var(--cream-deep); overflow: hidden; }
.skill-fill {
    height: 100%; width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--lime));
    transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view .skill-fill, .in-view.skill-fill { width: var(--pct, 0%); }

/* Rounded, organic image/visual mask for feature blocks */
.leaf-mask { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; overflow: hidden; }

/* ================= Premium components ================= */

/* Card upgrades */
.card { border-radius: var(--radius-lg); box-shadow: 0 6px 20px rgba(7,42,25,.05); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-body { padding: 22px 24px; }
.card-body h3 { font-size: 1.2rem; }
.card-tag { background: var(--green-light); color: var(--green-dark); }

/* Feature cards */
.features { gap: 26px; }
.feature {
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(7,42,25,.05);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature .icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-light), #d6eecb);
    color: var(--green-dark);
    font-size: 1.7rem;
    box-shadow: inset 0 0 0 1px rgba(18,135,74,.12);
}
.feature h3 { font-size: 1.18rem; }

/* Story visual */
.split { gap: 60px; }
.story-visual {
    position: relative;
    aspect-ratio: 5 / 4.4;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px 400px at 30% 20%, rgba(143,199,64,.25), transparent 60%),
        linear-gradient(150deg, #0e7a44, #0b5230);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.story-collage {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    place-items: center;
}
.story-collage span { font-size: 4.4rem; filter: drop-shadow(0 10px 16px rgba(0,0,0,.25)); animation: floaty 6s ease-in-out infinite; }
.story-collage span:nth-child(2) { animation-delay: .8s; }
.story-collage span:nth-child(3) { animation-delay: 1.6s; }
.story-collage span:nth-child(4) { animation-delay: 2.4s; }
.story-badge {
    position: absolute; bottom: 22px; left: 22px;
    background: #fff; color: var(--ink);
    padding: 14px 20px; border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
}
.story-badge strong { color: var(--green-dark); font-family: var(--font-head); font-size: 1.1rem; }
.story-badge span { color: var(--muted); font-size: .85rem; }

/* Process steps with connecting line */
.steps { position: relative; gap: 26px; }
.steps::before {
    content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: .5;
}
.step {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 24px 26px; text-align: center;
    box-shadow: 0 6px 20px rgba(7,42,25,.05);
}
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #fff; font-weight: 800; font-family: var(--font-head);
    display: grid; place-items: center; border-radius: 50%;
    box-shadow: 0 8px 18px rgba(18,135,74,.35);
}
.step h3 { font-size: 1.1rem; }

/* Sustainability band */
.band {
    position: relative;
    color: #fff;
    padding: 96px 0;
    background:
        radial-gradient(700px 500px at 90% 10%, rgba(143,199,64,.28), transparent 60%),
        linear-gradient(140deg, #0b3d24, #0a2c1a);
    overflow: hidden;
}
.band-decor span { position: absolute; font-size: 8rem; opacity: .06; }
.band-decor span:nth-child(1) { top: 6%; right: 6%; }
.band-decor span:nth-child(2) { bottom: 8%; left: 4%; font-size: 6rem; }
.band-decor span:nth-child(3) { top: 40%; left: 40%; font-size: 5rem; }
.band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.band-inner h2 { color: #fff; }
.band-inner p { opacity: .85; }
.band-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.band-stats > div {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius); padding: 22px 12px; text-align: center;
}
.band-stats .bnum { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--lime); }
.band-stats .blabel { font-size: .82rem; opacity: .8; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.quote {
    margin: 0; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 6px 20px rgba(7,42,25,.05);
    transition: transform .3s, box-shadow .3s;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { margin: 0 0 20px; font-size: 1.06rem; color: var(--ink); line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.q-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #fff; font-weight: 700; display: grid; place-items: center; font-size: .9rem;
}
.quote figcaption strong { display: block; font-family: var(--font-head); }
.quote figcaption em { font-style: normal; color: var(--muted); font-size: .86rem; }

/* Client marquee */
.marquee-section { padding: 60px 0 80px; }
.marquee { overflow: hidden; margin-top: 24px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    flex: 0 0 auto; padding: 14px 26px; border-radius: 999px;
    background: var(--bg-soft); border: 1px solid var(--border);
    font-weight: 600; color: var(--ink); white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA band */
.cta-band {
    position: relative; color: #fff; padding: 100px 0; text-align: center;
    background:
        radial-gradient(600px 400px at 20% 20%, rgba(143,199,64,.3), transparent 55%),
        linear-gradient(135deg, var(--green), var(--green-dark));
    overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; opacity: .92; font-size: 1.1rem; }

/* ================= Graphical emoji placeholders ================= */
.emoji-media {
    position: relative;
    overflow: hidden;
    background: var(--cream-deep);
    display: grid; place-items: center;
}
.emoji-media span {
    font-family: var(--font-head) !important;
    font-style: italic;
    font-weight: 700;
    color: var(--gold) !important;
    font-size: 3.4rem !important;
    animation: none !important;
    filter: none !important;
}
.emoji-media::after {
    /* soft decorative glow */
    content: "";
    position: absolute;
    width: 140%; height: 140%;
    top: -20%; left: -20%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 55%);
    pointer-events: none;
}
.emoji-media span {
    position: relative;
    font-size: 4.4rem;
    line-height: 1;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,.18));
    animation: floaty 5s ease-in-out infinite;
}
.detail-media.emoji-media span { font-size: 6rem; }
.card:hover .emoji-media span {
    animation-play-state: paused;
    transform: scale(1.15) rotate(-5deg);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cat-fruit     { background: linear-gradient(135deg, #ffe3d3, #ffc4b3); }
.cat-vegetable { background: linear-gradient(135deg, #d8f3d8, #b6e4b0); }
.cat-fresh-cut { background: linear-gradient(135deg, #d3f0ec, #b6e3dd); }
.cat-insight   { background: linear-gradient(135deg, #dce7f7, #c2d6f0); }
.cat-event     { background: linear-gradient(135deg, #ece0f7, #d7c2ee); }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

/* ================= Scroll-reveal animations ================= */
/* Only applied when JS is active, so no-JS users still see all content. */
body.js-anim .reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}
body.js-anim .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
body.js-anim .reveal-zoom { transform: scale(.94); }
body.js-anim .reveal-zoom.in-view { transform: none; }

/* ================= Hero enhancements ================= */
.hero { overflow: hidden; }
.hero::before {
    /* slow-drifting light sweep */
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,.10), transparent 45%);
    animation: heroDrift 18s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes heroDrift {
    from { transform: translate3d(-3%, -2%, 0) scale(1); }
    to   { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { animation: fadeUp .8s ease both; }
.hero-sub { animation: fadeUp .8s .12s ease both; }
.hero-actions { animation: fadeUp .8s .24s ease both; }

.hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-decor span {
    position: absolute;
    font-size: 2.6rem;
    opacity: .22;
    animation: floaty 7s ease-in-out infinite;
}
.hero-decor span:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s;   font-size: 3.2rem; }
.hero-decor span:nth-child(2) { top: 62%; left: 14%; animation-delay: 1.2s; }
.hero-decor span:nth-child(3) { top: 26%; right: 12%; animation-delay: .6s; font-size: 3rem; }
.hero-decor span:nth-child(4) { top: 68%; right: 9%;  animation-delay: 1.8s; }
.hero-decor span:nth-child(5) { top: 44%; left: 46%; animation-delay: 2.4s; opacity: .14; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

/* ================= Micro-interactions ================= */
/* Button shine */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: "";
    position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.btn:hover::after { left: 130%; }

/* Nav underline grow */
.nav-list > li > a { position: relative; }
.nav-list > li > a::after {
    content: "";
    position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--green);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { transform: scaleX(1); }

/* Stat cards lift + number pop on reveal */
.stat { transition: transform .25s ease; }
.stat:hover { transform: translateY(-4px); }
.stat .num { transition: transform .3s ease; }

/* Step number pulse on hover */
.step { transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step:hover::before { animation: pop .4s ease; }
@keyframes pop { 50% { transform: scale(1.18); } }

/* Feature icon bounce */
.feature .icon { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.feature:hover .icon { transform: translateY(-4px) scale(1.08) rotate(-4deg); }

/* Team photo ring on hover */
.team-photo { transition: transform .3s ease, box-shadow .3s ease; }
.team-card:hover .team-photo { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(27,94,32,.22); }

/* WhatsApp gentle pulse */
.whatsapp-float { animation: waPulse 2.6s ease-in-out infinite; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
    50%      { box-shadow: 0 8px 24px rgba(0,0,0,.25), 0 0 0 12px rgba(37,211,102,0); }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    body.js-anim .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
/* ================= Classical refinements ================= */
/* Hero badge → refined letter-spaced label with flanking rules */
.hero-badge {
    background: transparent; border: none; padding: 0; margin-bottom: 24px;
    backdrop-filter: none;
    text-transform: uppercase; letter-spacing: .32em; font-size: .72rem; font-weight: 600;
    color: var(--gold-soft);
    display: inline-flex; align-items: center; gap: 16px;
}
.hero-badge::before, .hero-badge::after { content: ""; width: 40px; height: 1px; background: var(--gold); opacity: .7; }
.hero h1 { font-weight: 600; letter-spacing: -0.01em; }
.hero h1 .accent { background: none; -webkit-text-fill-color: currentColor; color: var(--gold-soft); font-style: italic; }
.hero-trust { gap: 0; flex-wrap: wrap; }
.hero-trust span { padding: 0 22px; border-left: 1px solid rgba(255,255,255,.22); }
.hero-trust span:first-child { border-left: none; padding-left: 0; }

/* Scroll cue → classic mouse indicator */
.scroll-cue {
    width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 14px; animation: none;
}
.scroll-cue::before {
    content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: #fff; border-radius: 2px;
    animation: bob 1.6s ease-in-out infinite;
}

/* Seal → wax-seal style monogram */
.seal-core { background: var(--gold); color: var(--green-deep); font-family: var(--font-head); font-weight: 700; font-style: italic; font-size: 2rem; }
.seal text { fill: rgba(255,255,255,.85); letter-spacing: 2px; }

/* Stat numbers → solid classical serif */
.stat { border: 1px solid var(--border); border-radius: var(--radius); }
.stat .num { background: none; -webkit-text-fill-color: currentColor; color: var(--green); font-style: italic; }

/* Story visual → framed photograph */
.story-visual { background: none !important; box-shadow: none; overflow: visible; aspect-ratio: 5 / 4.6; }
.story-visual::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--gold); border-radius: var(--radius-lg); z-index: 0; }
.story-photo { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-badge { z-index: 2; border-radius: var(--radius); border: 1px solid var(--border); }

/* Cards → real imagery */
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-media img { transform: scale(1.06); }
.cat-card .card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,42,27,.72), rgba(11,42,27,.05) 55%); }
.cat-card-label { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.card { border: 1px solid var(--border); border-radius: var(--radius); }
.card:hover { border-color: var(--gold-soft); }

/* Feature cards → serif numerals instead of icons */
.feat-num { font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--gold); margin-bottom: 14px; }
.feature { border-radius: var(--radius); }
.feature::before { content: ""; display: block; width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }

/* Buttons → refined */
.btn { border-radius: var(--radius); box-shadow: none; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; font-weight: 600; padding: 15px 32px; }
.btn:hover { box-shadow: 0 12px 26px rgba(11,42,27,.2); }
.btn.btn-lime { color: var(--green-deep); }
.btn.btn-lime:hover { color: var(--green-deep); background: var(--gold-soft); border-color: var(--gold-soft); }

/* Ornamental divider under centred headings */
.text-center h2 { position: relative; }

/* Section title serif scale */
.section h2 { font-weight: 600; }

/* Testimonials → classical quotes */
.quote { border-radius: var(--radius); }
.quote .stars { color: var(--gold); }
.q-avatar { background: var(--green); font-family: var(--font-head); }

/* Marquee items → refined */
.marquee-item { border-radius: var(--radius); background: var(--cream); font-family: var(--font-body); }

@media (max-width: 960px) {
    .split, .contact-grid, .detail-grid, .band-inner { grid-template-columns: 1fr; gap: 34px; }
    .story-visual::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .section { padding: 68px 0; }
    .band, .cta-band { padding: 72px 0; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .main-nav.open { display: block; }
    .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }
    /* Menu is a white panel — force dark link colours regardless of header state. */
    .main-nav .nav-list > li > a { color: var(--ink); padding: 13px 14px; border-radius: 10px; }
    .main-nav .nav-list > li > a:hover { background: var(--green-light); color: var(--green-dark); }
    .main-nav .dropdown li a { color: var(--ink); }
    .nav-list > li > a::after { display: none; }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1; visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        margin: 0 0 0 12px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s;
    }
    .has-dropdown.open .dropdown { visibility: visible; max-height: 400px; }
    .nav-cta { text-align: center; }
}

@media (max-width: 620px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
}
