:root {
    /* ===== KM SATIVA THEME (exact palette from reference image) ===== */

    /* Base / Background */
    --light-cream: #fdfbf7;
    --mint-tint: #eef7e0;
    --white: #ffffff;
    --card-bg: #ffffff;

    /* Green (Primary) */
    --dark-green: #225902;
    --dark-green-2: #143b02;
    --mid-green: #4f8a1f;
    --sage-band: #6fae2c;

    /* Gold / Olive Accent */
    --golden-yellow: #8fc94a;
    --golden-light: #b7e176;
    --border-gold: #6fae2c;
    --premium-gold: #d4a94a;

    /* Discount / Offer Boxes */
    --offer-box-bg: #e8f3d9;
    --offer-box-border: #cbeaa0;

    /* Text */
    --heading-green: #1a4d0a;
    --text-gray: #555555;

    /* Gradients */
    --green-gradient: linear-gradient(135deg, #2d6b05 0%, #225902 45%, #143b02 100%);
    --green-gradient-soft: linear-gradient(160deg, #a8d766 0%, #4f8a1f 45%, #225902 100%);
    --gold-gradient: linear-gradient(135deg, #6fae2c 0%, #3f7a12 55%, #225902 100%);
    --gold-gradient-soft: linear-gradient(135deg, #e3f5c0 0%, #b7e176 45%, #8fc94a 100%);

    /* NEW: dimmer/darker green for CTA section, so it reads different from footer */
    --green-gradient-dim: linear-gradient(135deg, #163f03 0%, #0f2c02 55%, #081c01 100%);
}
 
 
/* --- UTILS --- */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.section-header h2::before, .section-header h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.section-header h2::before { left: -100px; }
.section-header h2::after { right: -100px; }

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* --- NAVBAR --- */
.navbar {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6%;
    background: var(--green-gradient);
    border-bottom: 2px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}
.navbar .logo { color: var(--white); }
.navbar .logo h2 { font-family: 'Playfair Display', serif; color: var(--golden-light); font-size: 1.6rem; }
.navbar .logo p { font-size: 0.7rem; letter-spacing: 2px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.navbar .nav-links { display: flex; gap: 36px; list-style: none; }
.navbar .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.25s, border-bottom-color 0.25s;
    border-bottom: 2px solid transparent;
}
.navbar .nav-links a.active { color: var(--golden-light); border-bottom: 2px solid var(--golden-yellow); }
.navbar .nav-links a:hover { color: var(--golden-yellow); border-bottom-color: var(--golden-yellow); }
.navbar .nav-icons { display: flex; gap: 20px; color: var(--white); font-size: 1.1rem; }
@media (max-width: 900px) { .navbar .nav-links { display: none; } }

/* ==========================================================================
   KM Sativa - "Our Journey" page
   Page-specific styles. Loads AFTER style.css (uses its :root variables,
   .section-header, .navbar, .footer, .stats-bar, .promise-card, .btn-gold)
   ========================================================================== */

.container-max {
    max-width: 1280px;
    margin: 0 auto;
}

/* -------------------- Journey Hero -------------------- */
.jh-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 8% 90px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('png/our_journey.png') center/cover no-repeat;
}

.jh
{
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-cream);
    color: var(--dark-green);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.jh-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.jh-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    line-height: 1.15;
    color: var(--dark-green);
    margin: 14px 0 20px;
}

.jh-hero-text h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jh-hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.jh-hero-divider .line {
    width: 48px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.jh-hero-divider p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-green-2);
}

.jh-hero-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.jh-hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-gradient);
    animation: float 4s ease-in-out infinite;
}
.dot-1 { width: 16px; height: 16px; opacity: 0.4; top: 8%; left: 15%; animation-delay: 0s; }
.dot-2 { width: 24px; height: 24px; opacity: 0.3; top: 42%; right: 8%; animation-delay: 1.5s; }
.dot-3 { width: 12px; height: 12px; opacity: 0.5; bottom: 16%; left: 10%; animation-delay: 2.5s; }

.jh-hero-float {
    position: relative;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.jh-hero-float img {
    max-width: 100%;
    max-height: 480px;
    filter: drop-shadow(0 25px 25px rgba(11,74,58,0.25));
    margin: 0 auto;
    display: block;
}

.jh-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    border: 4px solid var(--white);
    box-shadow: 0 12px 25px rgba(212,175,55,0.4);
    transform: rotate(10deg);
    color: var(--dark-green-2);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

@media (min-width: 900px) {
    .jh-hero-inner { grid-template-columns: 1fr 1fr; }
    .jh-hero-text h1 { font-size: 4.5rem; }
}

/* -------------------- Journey Timeline -------------------- */
.jh-timeline {
    padding: 80px 8%;
    background: var(--white);
    z-index:0;
}

.jh-timeline-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
     z-index:0;
}

.jh-tl-line {
    display: none;
}

.jh-tl-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.jh-tl-img {
    width: 130px;
    height: 130px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--green-gradient-soft);
    box-shadow: 0 10px 24px rgba(11,74,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.jh-tl-step:hover .jh-tl-img {
    transform: translateY(-6px);
}

.jh-tl-img svg {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.jh-tl-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark-green-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(212,175,55,0.4);
    font-size:25px;
}

.jh-tl-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.jh-tl-step p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.6;
    padding: 0 8px;
}

@media (min-width: 900px) {
    .jh-timeline-grid { grid-template-columns: repeat(5, 1fr); }
    .jh-tl-line {
        display: block;
        position: absolute;
        top: 65px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--gold-gradient);
        opacity: 0.35;
    }
}

/* -------------------- Story Split -------------------- */
.jh-story {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.jh-story-text {
    flex: 1;
    background: var(--green-gradient);
    padding: 32px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jh-story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--golden-light);
    margin-bottom: 16px;
    line-height: 1.2;
}

.jh-story-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.jh-story-img {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    background: var(--light-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jh-story-img img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    transform: none !important;
    transition: none !important;
}

.jh-story-img img,
.jh-story-img img:hover {
    transform: none !important;
    transition: none !important;
}

@media (min-width: 900px) {
    .jh-story { flex-direction: row;
    height:460px; }
}

@media (max-width: 899px) {
    .jh-story { min-height: auto; }
    .jh-story-img { min-height: 180px; }
}

/* -------------------- Vision & Mission -------------------- */
.jh-vm {
    padding: 80px 8%;
    background: var(--light-cream);
}

.jh-vm-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.jh-vm-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(11,74,58,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: 0.3s;
}

.jh-vm-card:hover {
    transform: translateY(-6px);
    border-color: var(--golden-yellow);
    box-shadow: 0 20px 40px rgba(212,169,74,0.3);
}

.jh-vm-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jh-vm-icon svg {
    width: 26px;
    height: 26px;
}

.jh-vm-icon-cream {
    background: var(--light-cream);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--golden-yellow);
}

.jh-vm-icon-gold {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(212,175,55,0.4);
}

.jh-vm-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    text-align: left;
    margin-bottom: 12px;
}

.jh-vm-body p {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (min-width: 900px) {
    .jh-vm-grid { grid-template-columns: 1fr 1fr; }
}

/* -------------------- Our Specialities -------------------- */
.jh-spec {
    padding: 80px 8%;
    background: var(--white);
    text-align: center;
}

.jh-spec-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.jh-spec-card {
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 20px 14px;
    transition: 0.3s;
}

.jh-spec-card:hover {
    transform: translateY(-6px);
}

.jh-spec-icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.jh-spec-icon svg {
    width: 34px;
    height: 34px;
    color: var(--golden-yellow);
}

.jh-spec-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.jh-spec-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (min-width: 700px) {
    .jh-spec-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .jh-spec-grid { grid-template-columns: repeat(6, 1fr); }
}

/* -------------------- Farm to Kitchen -------------------- */
.jh-f2k {
    padding: 80px 8%;
    background: var(--light-cream);
    text-align: center;
}

.jh-f2k-row {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.jh-f2k-step {
    text-align: center;
}

.jh-f2k-img {
    width: 96px;
    height: 96px;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    border: 2px solid rgba(212,175,55,0.3);
    box-shadow: 0 10px 20px rgba(11,74,58,0.12);
    margin-bottom: 12px;
}

.jh-f2k-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.jh-f2k-step p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
}

.jh-f2k-arrow {
    display: none;
    font-size: 1.3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 900px) {
    .jh-f2k-arrow { display: block; }
}

/* -------------------- Final CTA -------------------- */
.jh-cta {
    display: flex;
    flex-direction: column;
    /* UPDATED: was var(--green-gradient) same as footer -> now uses a
       darker/dimmer gradient so this section reads visually different
       from the footer below it */
    background: var(--green-gradient-dim);
    overflow: hidden;
}

.jh-cta-text {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jh-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.quote-mark {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jh-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    font-size: 1.4rem;
    line-height: 1.5;
}

.jh-cta-divider {
    width: 100%;
    height: 1px;
    background: rgba(212,175,55,0.35);
    margin-bottom: 34px;
}

.jh-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.jh-cta-sub {
    color: var(--golden-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.jh-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* UPDATED: Shop Now button inside CTA now uses gold gradient so it
   pops against the dark background instead of blending into it */
.jh-cta .btn-gold {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 8px 22px rgba(212, 169, 74, 0.5);
    border: none;
}
.jh-cta .btn-gold:hover {
    background: var(--golden-yellow);
    color: var(--dark-green-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(212, 169, 74, 0.65);
}

.jh-btn-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--golden-light);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid var(--golden-yellow);
    cursor: pointer;
    transition: 0.3s;
}

.jh-btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--dark-green-2);
    border-color: transparent;
}

.jh-cta-img {
    flex: 1;
    position: relative;
    min-height: 340px;
    background: var(--dark-green-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jh-cta-img img {
    max-width: 70%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.35));
}

@media (min-width: 900px) {
    .jh-cta { flex-direction: row; }
}

/* -------------------- Responsive tweaks -------------------- */
@media (max-width: 768px) {
    .jh-hero { padding: 50px 6% 60px; min-height: auto; }
    .jh-hero-text h1 { font-size: 2.6rem; }
    .jh-timeline, .jh-vm, .jh-spec, .jh-f2k { padding: 50px 6%; }
    .jh-story-text, .jh-cta-text { padding: 45px 6%; }
    .jh-vm-card { flex-direction: column; padding: 30px 22px; }
    .jh-cta-btns { flex-direction: column; }
    .jh-btn-outline, .jh-cta-btns .btn-gold { width: 100%; text-align: center; }
}