*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green-darkest: #0d2b0f; --green-dark: #1a4d1e; --green-mid: #2d7a35;
  --green-main: #5b9853; --green-light: #6ec776; --green-pale: #d4f0d7;
  --green-soft: #f0faf1; --cream: #fdfaf5; --white: #ffffff;
  --text-dark: #1a2e1b; --text-mid: #3d5540; --text-muted: #7a9480; --gold: #c8952a;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-20px) rotate(3deg);} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-48px);} to{opacity:1;transform:translateX(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(48px);} to{opacity:1;transform:translateX(0);} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.84);} to{opacity:1;transform:scale(1);} }
@keyframes rotateIn { from{opacity:0;transform:translateY(28px) rotate(-5deg);} to{opacity:1;transform:none;} }
@keyframes slideDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
@keyframes ripple { 0%{transform:scale(0);opacity:0.5;} 100%{transform:scale(3);opacity:0;} }
@keyframes badgeIn { from{opacity:0;transform:translateX(-16px) translateY(10px);} to{opacity:1;transform:none;} }
@keyframes starPop { 0%{transform:scale(0) rotate(-30deg);opacity:0;} 70%{transform:scale(1.3);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes particleDrift { 0%{transform:translateY(0) translateX(0) scale(1);opacity:0;} 20%{opacity:0.6;} 80%{opacity:0.4;} 100%{transform:translateY(-140px) translateX(30px) scale(0.6);opacity:0;} }
@keyframes borderPulse { 0%,100%{border-color:rgba(58,158,68,0.1);} 50%{border-color:rgba(58,158,68,0.4);} }
@keyframes spin { to{transform:rotate(360deg);} }
@keyframes checkPop { 0%{transform:scale(0) rotate(-15deg);opacity:0;} 70%{transform:scale(1.2);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes successSlide { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes scrollCards { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* Header Container */
.header-container {
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    max-width: 1580px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    background: var(--white);
    border-radius: 100px; /* Full pill shape */
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(13, 43, 15, 0.08);
    border: 1px solid rgba(13, 43, 15, 0.03);
    transition: all 0.3s ease;
}

/* Scrolled State */
.navbar.compact {
    padding: 0.7rem 2rem;
    box-shadow: 0 4px 15px rgba(13, 43, 15, 0.1);
}

/* Logo Styles */
/* Logo Container & Image Logic */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 78px; /* Default height */
    width: auto;  /* Maintains aspect ratio */
    display: block;
    transition: height 0.3s ease;
}

/* Scrolled State: Shrink the logo slightly */
.navbar.compact .logo-img {
    height: 68px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 54px; /* Slightly smaller for mobile screens */
    }
    
    .nav-links, .cta-button:not(.full-width) { 
        display: none; 
    }
    
    .hamburger { 
        display: flex; 
    }
}

/* Mobile Drawer Logo (Inside the drawer) */
.drawer-header .logo-img {
    height: 40px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 3.2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--green-mid);
}

/* Desktop: Thick Bottom Border Indicator */
.nav-links li.active {
    position: relative;
}
.nav-links li.active a {
    color: var(--green-mid);
    font-weight: 700;
}
.nav-links li.active::after {
    content: '';
    position: absolute;
    bottom: -0.85rem;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green-mid);
    border-radius: 4px 4px 0 0;
}

/* Mobile: Sidebar Highlight */
.drawer-link.active {
    background: var(--green-soft);
    color: var(--green-mid);
    font-weight: 700;
    border-left: 6px solid var(--green-mid);
}

/* CTA Button */
.cta-button {
    background: var(--green-darkest);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.cta-button svg {
    transition: transform 0.2s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    background: var(--green-soft);
    border: 1.5px solid var(--green-pale);
    padding: 0.6rem;
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--green-darkest);
    border-radius: 2px;
}

/* Drawer / Mobile Menu */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 43, 15, 0.5); /* Tinted overlay */
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-radius: 24px 0 0 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.drawer.open { transform: translateX(0); }

.drawer-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--green-soft);
}

.close-button {
    font-size: 1.8rem;
    border: none;
    background: #fff1f1;
    color: #dc2626;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.drawer-link {
    padding: 1.1rem 2rem;
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 1.1rem;
    border-left: 5px solid transparent;
    transition: all 0.2s ease;
}

.drawer-link.active {
    background: var(--green-soft);
    color: var(--green-mid);
    border-left-color: var(--green-mid);
}

.drawer-footer {
    margin-top: auto;
    padding: 2rem;
    background: var(--cream);
    border-radius: 24px 0 0 0;
}

.cta-button.full-width {
    justify-content: center;
    padding: 1rem;
}

.tagline {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.25rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-links, .cta-button:not(.full-width), .logo-desktop { 
        display: none; 
    }
    .hamburger { display: flex; }
    .navbar { 
        border-radius: 16px; 
        padding: 0.8rem 1.25rem;
    }
    .header-container {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }
}
/* ── RESPONSIVE ── */

/* Hide hamburger on desktop */
@media (min-width: 961px) {
  .nav-hamburger { display: none !important; }
  .mobile-drawer { display: none !important; }
}

/* Tablet — hide links, show hamburger */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 4%; }
}

/* Small tablet — shrink CTA text */
@media (max-width: 768px) {
  .nav-cta span { display: none; }
  .nav-cta {
    padding: 0.6rem 1rem;
    gap: 0;
  }
}

/* Mobile — hide desktop CTA entirely, just hamburger */
@media (max-width: 560px) {
  .nav-cta { display: none; }
  nav { padding: 0 4%; }
  .nav-logo-img { width: 68px; }
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 10rem 5% 5rem;
  position: relative; overflow: hidden;
  background: var(--green-darkest);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; display: block;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,43,15,0.72) 0%, rgba(13,43,15,0.82) 50%, rgba(13,43,15,0.95) 100%);
  z-index: 1;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,199,118,0.3), transparent);
  z-index: 2;
}
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.particle { position: absolute; border-radius: 50%; animation: particleDrift linear infinite; }
.page-hero-content { position: relative; z-index: 3; text-align: center; max-width: 700px; width: 100%; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 1.5rem; animation: fadeInUp 0.6s 0.15s ease both; }
.breadcrumb a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb .sep { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.breadcrumb .current { font-size: 0.78rem; color: var(--green-light); font-weight: 600; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(58,158,68,0.2); color: var(--green-light); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; animation: fadeInUp 0.6s 0.2s ease both; }
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; animation: pulse 2s infinite; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.08; color: #fff; letter-spacing: -0.03em; margin-bottom: 1.25rem; animation: fadeInUp 0.7s 0.3s ease both; }
.page-hero h1 em { font-style: normal; color: var(--green-light); }
.page-hero .hero-sub { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto; animation: fadeInUp 0.7s 0.45s ease both; }

/* ── HERO (homepage) ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 12rem 5% 4rem; gap: 4rem;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%; background: radial-gradient(ellipse,rgba(58,158,68,0.07) 0%,transparent 70%); pointer-events: none; animation: floatB 9s ease-in-out infinite; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); color: var(--green-dark); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeInLeft 0.7s 0.2s ease both; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--green-main); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.8rem,5vw,4.2rem); font-weight: 800; line-height: 1.1; color: var(--text-dark); letter-spacing: -0.03em; margin-bottom: 1.5rem; animation: fadeInLeft 0.7s 0.35s ease both; }
.hero h1 em { font-style: normal; color: var(--green-main); }
.hero p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 480px; margin-bottom: 2.5rem; animation: fadeInLeft 0.7s 0.5s ease both; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInLeft 0.7s 0.65s ease both; }
.hero-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 500px; animation: fadeInRight 0.9s 0.4s ease both; }
.hero-img { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.hero-img:hover img { transform: scale(1.1); }
.hero-img-large { grid-row: span 2; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 40%,rgba(13,43,15,0.35)); border-radius: 16px; }
.hero-stat-badge { position: absolute; bottom: 16px; left: 16px; z-index: 3; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); padding: 8px 14px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; color: var(--text-dark); animation: badgeIn 0.8s 1.1s ease both; transition: transform 0.3s ease,box-shadow 0.3s ease; }
.hero-img:hover .hero-stat-badge { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.hero-stat-badge span { display: block; font-size: 1.1rem; color: var(--green-main); font-weight: 800; }

/* ── BUTTONS ── */
.btn-primary { background: var(--green-dark); color: white; padding: 0.85rem 2rem; border-radius: 50px; font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--green-main); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(58,158,68,0.35); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-outline { background: transparent; color: var(--text-dark); padding: 0.85rem 2rem; border-radius: 50px; font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 2px solid rgba(58,158,68,0.25); transition: all 0.3s ease; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--green-main); color: var(--green-main); transform: translateY(-2px); background: var(--green-soft); }
.btn-white { background: white; color: var(--green-dark); padding: 0.85rem 2rem; border-radius: 50px; font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); background: var(--green-pale); }

/* ── SECTION TAGS & HEADERS ── */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-main); margin-bottom: 1rem; }
.section-tag::before { content: ''; display: inline-block; width: 3rem; height: 2px; background: var(--green-main); border-radius: 2px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-header p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── ABOUT ── */
.about-strip { padding: 6rem 5%; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; line-height: 1.25; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.about-text h2 strong { color: var(--green-main); }
.about-text p { font-size: 0.95rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-img-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img { border-radius: 14px; overflow: hidden; position: relative; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),box-shadow 0.45s ease; }
.about-img:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(13,43,15,0.12); }
.about-img img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.65s; }
.about-img:hover img { transform: scale(1.09); }

/* ── PRODUCTS ── */
.products { padding: 6rem 5%; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.product-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(58,158,68,0.1); cursor: pointer; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),box-shadow 0.45s ease,border-color 0.4s ease; }
.product-card:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 28px 65px rgba(13,43,15,0.15); border-color: rgba(58,158,68,0.3); }
.product-img { height: 440px; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.product-card:hover .product-img img { transform: scale(1.12); }
.product-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 50%,rgba(13,43,15,0.5)); opacity: 0; transition: opacity 0.4s ease; }
.product-card:hover .product-img-overlay { opacity: 1; }
.product-tag { position: absolute; top: 16px; left: 16px; background: var(--green-main); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; }
.product-body { padding: 1.5rem; position: relative; }
.product-body::before { content: ''; position: absolute; bottom: 0; left: 1.5rem; width: 0; height: 2px; background: var(--green-main); border-radius: 2px; transition: width 0.45s ease; }
.product-card:hover .product-body::before { width: calc(100% - 3rem); }
.product-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; transition: color 0.3s; }
.product-card:hover .product-body h3 { color: var(--green-main); }
.product-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── PRODUCT DETAILS ── */
.product-detail { padding: 5rem 5%; }
.product-detail:nth-child(odd) { background: var(--cream); }
.product-detail:nth-child(even) { background: var(--white); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pd-grid.reverse { direction: rtl; }
.pd-grid.reverse > * { direction: ltr; }
.pd-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 55px rgba(13,43,15,0.12); }
.pd-img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.7s ease; }
.pd-img:hover img { transform: scale(1.05); }
.pd-text h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.pd-text h2 strong { color: var(--green-main); }
.pd-text p { font-size: 0.92rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1rem; }
.pd-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pd-feat { display: flex; align-items: flex-start; gap: 12px; }
.pd-feat-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-feat-icon svg { width: 14px; height: 14px; }
.pd-feat-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.pd-feat-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── WHY / BENTO ── */
.why { padding: 5rem 5%; background: #113314; position: relative; overflow: hidden; }
.why-header-inner { text-align: center; margin-bottom: 3.5rem; }
.why-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-main); margin-bottom: 1rem; }
.why-eyebrow::before,.why-eyebrow::after { content: ''; display: inline-block; height: 2px; width: 2rem; background: #fff; border-radius: 2px; }
.why-header-inner h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem; }
.why-header-inner p { font-size: 0.95rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; max-width: 1600px; margin: 0 auto; }
.bc { background: #fff; border-radius: 20px; border: 1px solid rgba(58,158,68,0.1); padding: 2rem; position: relative; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(36px) scale(0.97); transition: opacity 0.65s ease,transform 0.65s cubic-bezier(0.34,1.56,0.64,1),box-shadow 0.4s ease,border-color 0.4s ease; }
.bc.bv { opacity: 1; transform: none; }
.bc:hover { box-shadow: 0 20px 55px rgba(58,158,68,0.13); border-color: rgba(58,158,68,0.28); transform: translateY(-6px) scale(1.01); }
.bc::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg,#3a9e44,#6ec776); transition: width 0.45s ease; }
.bc:hover::after { width: 100%; }
.bc-consistency { grid-column: 1/7; grid-row: 1; }
.bc-partnership { grid-column: 7/13; grid-row: 1; }
.bc-deep-roots { grid-column: 1/7; grid-row: 2; background: #f4faf4; }
.bc-quality { grid-column: 7/10; grid-row: 2; }
.bc-legacy { grid-column: 10/13; grid-row: 2; }
.bc-community { grid-column: 1/5; grid-row: 3; background: #1a4d1e; color: white; border-color: transparent; }
.bc-community:hover { box-shadow: 0 20px 55px rgba(13,43,15,0.3); }
.bc-commitment { grid-column: 5/9; grid-row: 3; }
.bc-supply { grid-column: 9/13; grid-row: 3; }
.bento-icon { width: 46px; height: 46px; background: #eaf7eb; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),background 0.4s ease; }
.bc:hover .bento-icon { transform: rotate(8deg) scale(1.14); background: #d4f0d7; }
.bc-community .bento-icon { background: rgba(110,199,118,0.18); }
.bento-icon svg { width: 22px; height: 22px; }
.bc h3 { font-size: 1rem; font-weight: 700; color: #1a2e1b; margin-bottom: 0.5rem; line-height: 1.3; }
.bc p { font-size: 0.82rem; color: #7a9480; line-height: 1.7; }
.bc-community h3 { color: #fff; }
.bc-community p { color: rgba(255,255,255,0.65); }
.progress-line { display: flex; align-items: center; gap: 10px; margin: 1.25rem 0 0.5rem; }
.line-track { flex: 1; height: 3px; background: #eaf7eb; border-radius: 2px; overflow: hidden; }
.line-fill { height: 100%; width: 0; background: #3a9e44; border-radius: 2px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.bc.bv .line-fill { width: var(--fill); }
.line-icon-wrap { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #3a9e44; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: white; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.bc:hover .line-icon-wrap { transform: scale(1.15); background: #eaf7eb; }
.line-icon-wrap svg { width: 16px; height: 16px; }
.line-label { font-size: 0.72rem; font-weight: 600; color: #3a9e44; letter-spacing: 0.05em; }
.bc-deep-roots h3 { font-size: 1.9rem; font-weight: 800; color: #1a2e1b; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.bc-deep-roots .sub { font-size: 1.3rem; font-weight: 600; color: #3a9e44; margin-bottom: 0.75rem; }
.bc-deep-roots p { font-size: 0.85rem; color: #7a9480; max-width: 600px; }
.bc-quality,.bc-legacy { padding: 1.5rem; }
.bc-quality .big-label { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7a9480; margin-bottom: 0.75rem; }
.trophy-wrap { display: flex; align-items: center; gap: 12px; }
.trophy-svg { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.bc-quality:hover .trophy-svg { transform: scale(1.18) rotate(-5deg); }
.bc-legacy .big-num { font-size: 6rem; font-weight: 900; color: #1a2e1b; letter-spacing: -0.04em; line-height: 1; margin: 0.5rem 0 0.25rem; transition: color 0.3s; }
.bc-legacy:hover .big-num { color: #3a9e44; }
.bc-legacy .stars-row { display: flex; gap: 3px; margin-bottom: 0.5rem; }
.bc-legacy .star { color: #c8952a; font-size: 13px; }
.bc-legacy:hover .star:nth-child(1) { animation: starPop 0.3s 0.00s both; }
.bc-legacy:hover .star:nth-child(2) { animation: starPop 0.3s 0.06s both; }
.bc-legacy:hover .star:nth-child(3) { animation: starPop 0.3s 0.12s both; }
.bc-legacy:hover .star:nth-child(4) { animation: starPop 0.3s 0.18s both; }
.bc-legacy:hover .star:nth-child(5) { animation: starPop 0.3s 0.24s both; }
.bc-community .big-num-sm { font-size: 2.9rem; font-weight: 900; color: #6ec776; letter-spacing: -0.03em; line-height: 1; margin: 1rem 0 0.25rem; }
.circle-deco { position: absolute; bottom: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%; border: 2px solid rgba(110,199,118,0.15); transition: transform 0.5s ease,opacity 0.5s ease; opacity: 0.6; }
.bc-community:hover .circle-deco { transform: scale(1.25); opacity: 1; }
.bc-commitment .val-row { display: flex; align-items: flex-end; gap: 6px; margin: 0.75rem 0 0.25rem; }
.bc-commitment .val { font-size: 2.5rem; font-weight: 900; color: #1a2e1b; letter-spacing: -0.03em; line-height: 1; transition: color 0.3s; }
.bc-commitment:hover .val { color: #3a9e44; }
.bc-commitment .val-unit { font-size: 1.2rem; font-weight: 700; color: #7a9480; padding-bottom: 6px; }
.bc-supply .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.75rem; }
.stag { font-size: 0.85rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; background: #eaf7eb; color: #2d7a35; }

/* ── SUPPLY SECTION ── */
.supply-section { padding: 6rem 5%; background: var(--green-dark); position: relative; overflow: hidden; }
.supply-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.supply-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.4s ease; cursor: pointer; }
.supply-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); border-color: rgba(110,199,118,0.3); }
.supply-card .icon { width: 52px; height: 52px; background: rgba(110,199,118,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.supply-card:hover .icon { transform: scale(1.15) rotate(5deg); }
.supply-card .icon svg { width: 24px; height: 24px; }
.supply-card h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.supply-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 6rem 5%; background: var(--white); }
.testimonials-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.testimonials-header-left { flex: 1; }
.slider-arrows { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.slider-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(58,158,68,0.25); background: var(--cream); color: var(--green-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; font-size: 1rem; user-select: none; }
.slider-arrow:hover { background: var(--green-main); border-color: var(--green-main); color: white; }
.testimonials-slider-wrapper { overflow: hidden; cursor: grab; }
.testimonials-grid { display: flex; gap: 1.5rem; width: max-content; animation: scrollCards 25s linear infinite; }
.testimonials-grid:hover { animation-play-state: paused; }
.testimonial-card { background: var(--cream); border-radius: 16px; padding: 1.75rem; border: 1px solid rgba(58,158,68,0.08); transition: all 0.45s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; cursor: pointer; flex: 0 0 340px; min-width: 0; }
.testimonial-card::before { content: '"'; position: absolute; top: -10px; right: 16px; font-size: 6rem; font-weight: 900; color: rgba(58,158,68,0.07); line-height: 1; font-family: Georgia,serif; }
.testimonial-card:hover { box-shadow: 0 18px 50px rgba(13,43,15,0.12); transform: translateY(-8px); border-color: rgba(58,158,68,0.22); }
.stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.stars span { color: var(--gold); font-size: 15px; }
.testimonial-card blockquote { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--green-pale); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),border-color 0.35s ease; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-card:hover .author-avatar { transform: scale(1.14) rotate(-6deg); border-color: var(--green-main); }
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }

/* ── FAQ ── */
.faq { padding: 6rem 5%; background: var(--cream); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-left h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 1rem; }
.faq-left p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid rgba(58,158,68,0.1); overflow: hidden; transition: border-color 0.3s,box-shadow 0.3s; }
.faq-item:hover { border-color: rgba(58,158,68,0.25); box-shadow: 0 6px 20px rgba(58,158,68,0.09); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; background: none; border: none; font-family: 'Poppins',sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; gap: 1rem; transition: color 0.3s; }
.faq-item.open .faq-q { color: var(--green-main); }
.faq-q .icon { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--green-pale); display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.faq-q .icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-q .icon { background: var(--green-main); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),padding 0.3s,opacity 0.3s; padding: 0 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; opacity: 0; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.25rem 1.1rem; opacity: 1; }

/* ── CTA ── */
.cta-section { padding: 6rem 5%; background: var(--white); }
.cta-inner { background: var(--green-dark); border-radius: 24px; padding: 4rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; top: -30%; right: 10%; width: 300px; height: 300px; background: radial-gradient(circle,rgba(110,199,118,0.12) 0%,transparent 70%); animation: float 8s ease-in-out infinite; pointer-events: none; }
.cta-text h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; }
.cta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.cta-btns { margin-top: 2rem; }
.cta-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cta-img { border-radius: 12px; overflow: hidden; }
.cta-img img { width: 100%; height: 130px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.cta-img:hover img { transform: scale(1.1); }

/* ── INQUIRY FORM ── */
.inquiry-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 1rem; }
.iq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.iq-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.iq-row .iq-group { margin-bottom: 0; }
.iq-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.iq-group input,.iq-group select,.iq-group textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 0.65rem 0.9rem; font-family: 'Poppins',sans-serif; font-size: 0.84rem; color: #fff; outline: none; width: 100%; box-sizing: border-box; transition: border-color 0.2s,background 0.2s; }
.iq-group input::placeholder,.iq-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.iq-group select option { background: #1a4d1e; }
.iq-group input:focus,.iq-group select:focus,.iq-group textarea:focus { border-color: rgba(110,199,118,0.5); background: rgba(255,255,255,0.1); }
.iq-group textarea { resize: none; height: 80px; }
.btn-iq { width: 100%; background: white; color: var(--green-dark); border: none; border-radius: 50px; padding: 0.85rem 1.5rem; font-family: 'Poppins',sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; transition: background 0.25s,transform 0.2s,box-shadow 0.2s; }
.btn-iq:hover { background: var(--green-pale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-iq svg { transition: transform 0.2s; }
.btn-iq:hover svg { transform: translateX(4px); }
.iq-success { display: none; text-align: center; padding: 1rem 0 0; color: var(--green-light); font-size: 0.85rem; line-height: 1.7; }
.iq-success strong { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 6rem 5%; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-main); margin-bottom: 1rem; }
.section-eyebrow::before { content: ''; display: inline-block; width: 3rem; height: 2px; background: var(--green-main); border-radius: 2px; }
.contact-info-col h2 { font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.contact-info-col h2 strong { color: var(--green-main); }
.contact-info-col > p { font-size: 0.92rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--cream); border-radius: 16px; padding: 1.25rem 1.5rem; border: 1px solid rgba(58,158,68,0.08); transition: all 0.35s; cursor: default; position: relative; overflow: hidden; }
.contact-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg,var(--green-main),var(--green-light)); transition: width 0.4s ease; }
.contact-card:hover::after { width: 100%; }
.contact-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(13,43,15,0.09); background: var(--white); }
.cc-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon svg { width: 20px; height: 20px; }
.cc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; display: block; }
.cc-value { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.cc-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.cc-value a:hover { color: var(--green-main); }
.hours-card { background: var(--green-dark); border-radius: 18px; padding: 1.75rem; color: white; }
.hours-card h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.1rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.hours-time { font-size: 0.85rem; font-weight: 600; color: var(--green-light); }
.hours-row.closed .hours-time { color: rgba(255,255,255,0.3); }
.form-card { background: var(--cream); border-radius: 24px; padding: 2.75rem; border: 1px solid rgba(58,158,68,0.1); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle,rgba(58,158,68,0.07) 0%,transparent 70%); pointer-events: none; }
.form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.form-card .form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; position: relative; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,.form-group select,.form-group textarea { background: var(--white); border: 1.5px solid rgba(58,158,68,0.15); border-radius: 12px; padding: 0.75rem 1rem; font-family: 'Poppins',sans-serif; font-size: 0.88rem; color: var(--text-dark); outline: none; width: 100%; box-sizing: border-box; transition: border-color 0.25s,box-shadow 0.25s; appearance: none; }
.form-group input::placeholder,.form-group textarea::placeholder { color: rgba(58,90,64,0.3); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(91,152,83,0.1); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235b9853' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; background-color: var(--white); }
.form-group textarea { resize: none; height: 120px; line-height: 1.6; }
.char-counter { position: absolute; bottom: 10px; right: 14px; font-size: 0.65rem; color: var(--text-muted); pointer-events: none; }
.btn-submit { width: 100%; background: var(--green-dark); color: white; border: none; border-radius: 50px; padding: 1rem 2rem; font-family: 'Poppins',sans-serif; font-size: 0.92rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 0.5rem; transition: all 0.3s; position: relative; overflow: hidden; }
.btn-submit:hover { background: var(--green-main); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(58,158,68,0.35); }
.btn-submit svg { width: 16px; height: 16px; transition: transform 0.3s; flex-shrink: 0; }
.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit.loading { pointer-events: none; opacity: 0.8; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn-submit.loading .spinner { display: block; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; animation: successSlide 0.5s ease both; }
.success-check { width: 72px; height: 72px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.success-check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.form-success p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; max-width: 340px; }
.form-success .back-btn { margin-top: 1.75rem; background: var(--green-dark); color: white; border: none; border-radius: 50px; padding: 0.75rem 1.75rem; font-family: 'Poppins',sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.form-success .back-btn:hover { background: var(--green-main); transform: translateY(-2px); }

/* ── MISSION (about page) ── */
.mission-section { padding: 7rem 5%; background: var(--white); position: relative; }
.mission-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--green-dark),var(--green-main),var(--green-light),var(--green-main),var(--green-dark)); }
.mission-inner { max-width: 1200px; margin: 0 auto; }
.mission-header { text-align: center; margin-bottom: 4rem; }
.mission-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-main); margin-bottom: 1rem; }
.mission-eyebrow::before,.mission-eyebrow::after { content: ''; display: inline-block; height: 2px; width: 2rem; background: var(--green-main); border-radius: 2px; }
.mission-header h2 { font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; margin-bottom: 0.75rem; line-height: 1.1; }
.mission-header h2 em { font-style: italic; color: var(--green-main); }
.mission-sub { font-size: 0.98rem; color: var(--text-muted); max-width: 440px; margin: 0 auto; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 4rem; }
.val-card { background: var(--cream); border-radius: 20px; padding: 2rem; border: 1px solid rgba(58,158,68,0.08); transition: all 0.45s cubic-bezier(0.4,0,0.2,1); cursor: pointer; position: relative; overflow: hidden; }
.val-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg,var(--green-main),var(--green-light)); transition: width 0.4s ease; }
.val-card:hover::after { width: 100%; }
.val-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,43,15,0.1); border-color: rgba(58,158,68,0.22); background: var(--white); }
.val-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.val-card:hover .val-icon { transform: rotate(8deg) scale(1.12); }
.val-icon svg { width: 22px; height: 22px; }
.val-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.45rem; transition: color 0.3s; }
.val-card:hover h3 { color: var(--green-main); }
.val-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); background: var(--green-dark); border-radius: 20px; overflow: hidden; }
.stat-item { padding: 2.5rem 1.5rem; text-align: center; position: relative; transition: background 0.3s; cursor: default; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.stat-item:last-child::after { display: none; }
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-num { font-size: 2.8rem; font-weight: 700; color: var(--green-light); letter-spacing: -0.04em; line-height: 1; display: block; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.stat-item:hover .stat-num { transform: scale(1.1); }
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-weight: 500; line-height: 1.4; }

/* ── LEADERSHIP (about page) ── */
.leadership-section { padding: 7rem 5%; background: var(--cream); }
.leadership-inner { max-width: 1200px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 4.5rem; }
.section-header-center h2 { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; }
.founder-card { display: grid; grid-template-columns: 1fr 1.3fr; background: var(--white); border-radius: 24px; overflow: hidden; border: 1px solid rgba(58,158,68,0.1); margin-bottom: 2rem; transition: box-shadow 0.4s; }
.founder-card:hover { box-shadow: 0 28px 65px rgba(13,43,15,0.14); }
.founder-img-wrap { position: relative; overflow: hidden; min-height: 440px; background: var(--green-soft); }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.7s; }
.founder-card:hover .founder-img-wrap img { transform: scale(1.05); }
.founder-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right,transparent 55%,rgba(13,43,15,0.1)); }
.founder-badge-pill { position: absolute; top: 24px; left: 24px; background: var(--green-main); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.founder-info { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.founder-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-main); margin-bottom: 0.6rem; }
.founder-info h3 { font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 1.5rem; line-height: 1.1; }
.founder-info p { font-size: 0.92rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem; }
.founder-info p:last-child { margin-bottom: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(58,158,68,0.08); transition: all 0.45s cubic-bezier(0.4,0,0.2,1); cursor: pointer; position: relative; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(13,43,15,0.14); border-color: rgba(58,158,68,0.25); }
.team-img { height: 280px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.65s; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 50%,rgba(13,43,15,0.25)); opacity: 0; transition: opacity 0.4s; }
.team-card:hover .team-img::after { opacity: 1; }
.team-body { padding: 1.5rem; }
.team-body .role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-main); margin-bottom: 0.4rem; }
.team-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.65rem; transition: color 0.3s; }
.team-card:hover .team-body h3 { color: var(--green-main); }
.team-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.72; }
.team-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg,var(--green-main),var(--green-light)); transition: width 0.45s; }
.team-card:hover .team-line { width: 100%; }

/* ── FOOTER ── */
footer { background: var(--green-darkest); padding: 5rem 5% 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.9; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 0.65rem; transition: color 0.2s,transform 0.2s; }
.footer-col a:hover { color: var(--green-light); transform: translateX(5px); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; }
.contact-item .ci-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(110,199,118,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.contact-item .ci-icon svg { width: 16px; height: 16px; }
.contact-item .ci-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.contact-item .ci-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p,.footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease,transform 0.75s ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.75s ease,transform 0.75s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.75s ease,transform 0.75s ease; }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.7s ease,transform 0.7s cubic-bezier(0.34,1.56,0.64,1); }
.reveal-rotate { opacity: 0; transform: translateY(30px) rotate(-5deg); transition: opacity 0.7s ease,transform 0.7s cubic-bezier(0.34,1.56,0.64,1); }
.reveal.visible,.reveal-left.visible,.reveal-right.visible,.reveal-scale.visible,.reveal-rotate.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; } .delay-2 { transition-delay: 0.16s; } .delay-3 { transition-delay: 0.24s; } .delay-4 { transition-delay: 0.32s; } .delay-5 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* 960px — Tablet landscape */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding: 9rem 5% 4rem; gap: 2.5rem; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-images { height: 320px; }
  .hero-img-large { grid-row: span 1; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-collage { grid-template-columns: 1fr 1fr; }
  .about-img img { height: 200px; }

  .products-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .product-img { height: 300px; }

  .pd-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pd-grid.reverse { direction: ltr; }
  .pd-img img { height: 280px; }

  .supply-grid { grid-template-columns: 1fr 1fr; }

  .bento { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bc-consistency,.bc-partnership,.bc-deep-roots,.bc-community { grid-column: 1 / 3; grid-row: auto; }
  .bc-quality,.bc-legacy,.bc-commitment,.bc-supply { grid-column: span 1; grid-row: auto; }

  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .cta-inner { grid-template-columns: 1fr; padding: 3rem 5%; }
  .cta-images { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-col { order: -1; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-img-wrap { min-height: 300px; }
  .founder-info { padding: 2rem; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-num { font-size: 2rem; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .page-hero { padding: 9rem 5% 4rem; min-height: 55vh; }
}

/* 768px — Tablet portrait */
@media (max-width: 768px) {
  .nav-cta { padding: 0.6rem 1rem; font-size: 0.8rem; }

  .hero { padding: 8.5rem 5% 3rem; }
  .hero-images { height: 240px; gap: 8px; }

  .about-strip { padding: 4rem 5%; }
  .about-img img { height: 160px; }

  .products { padding: 4rem 5%; }
  .product-img { height: 240px; }

  .bc { padding: 1.5rem; }
  .bc-deep-roots h3 { font-size: 1.3rem; }
  .bc-legacy .big-num { font-size: 3.5rem; }
  .bc-commitment .val { font-size: 1.8rem; }

  .testimonials { padding: 4rem 5%; }
  .faq { padding: 4rem 5%; }
  .cta-section { padding: 4rem 5%; }
  .cta-inner { border-radius: 16px; }
  .cta-img img { height: 100px; }

  .contact-section { padding: 4rem 5%; }
  .form-card { padding: 1.75rem; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .iq-row { grid-template-columns: 1fr; }
  .iq-row .iq-group { margin-bottom: 14px; }

  .team-img { height: 240px; }
  .team-body { padding: 1.25rem; }

  .stat-item { padding: 1.75rem 1rem; }
  .stat-num { font-size: 1.8rem; }

  footer { padding: 3.5rem 5% 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .page-hero { min-height: 48vh; padding: 8.5rem 5% 3rem; }
  .mission-section { padding: 4.5rem 5%; }
  .leadership-section { padding: 4.5rem 5%; }
  .supply-section { padding: 4rem 5%; }
  .product-detail { padding: 3.5rem 5%; }
  .pd-img img { height: 220px; }
}

/* 600px — Large mobile */
@media (max-width: 600px) {
  .hero { padding: 8rem 5% 3rem; gap: 2rem; }
  .hero h1 { font-size: clamp(1.9rem,7vw,2.5rem); }
  .hero p { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary,.btn-outline { width: 100%; justify-content: center; }
  .hero-images { display: none; }

  .bento { grid-template-columns: 1fr; gap: 10px; }
  .bc-consistency,.bc-partnership,.bc-deep-roots,
  .bc-quality,.bc-legacy,.bc-community,
  .bc-commitment,.bc-supply { grid-column: 1 / 2; }
  .bc-quality,.bc-legacy { padding: 1.5rem; }

  .products-grid { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .supply-card { padding: 1.25rem 1rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-img { height: 280px; }

  .stats-band { grid-template-columns: 1fr 1fr; border-radius: 14px; }
  .stat-item { padding: 1.5rem 0.75rem; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-item::after { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .val-card { padding: 1.5rem; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-img-wrap { min-height: 250px; }
  .founder-info { padding: 1.5rem; }
  .founder-info h3 { font-size: 1.6rem; }

  .cta-inner { padding: 2.5rem 1.5rem; border-radius: 14px; }
  .cta-img img { height: 85px; }

  .contact-grid { gap: 2rem; }
  .form-card { padding: 1.5rem; border-radius: 16px; }
  .hours-card { padding: 1.25rem; }
  .contact-card { padding: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 5% 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .page-hero { min-height: 44vh; padding: 9rem 5% 3rem; }
  .page-hero h1 { font-size: clamp(1.9rem,7vw,2.4rem); }
  .page-hero .hero-sub { font-size: 0.9rem; }

  .slider-arrows { display: none; }
  .testimonial-card { flex: 0 0 330px; }
}

/* 480px — Small mobile */
@media (max-width: 480px) {
  nav { padding: 0.85rem 4%; }
  .nav-logo-img { width: 65px; }
  .nav-cta { display: none; }

  .hero { padding: 8.5rem 4% 2.5rem; }
  .hero h1 { font-size: clamp(1.7rem,8vw,2.2rem); }

  .about-strip,.products,.why,.testimonials,
  .faq,.cta-section,.contact-section,
  .mission-section,.leadership-section,
  .supply-section,.product-detail { padding-left: 4%; padding-right: 4%; }
  footer { padding-left: 4%; padding-right: 4%; }

  .bc { padding: 1.25rem; border-radius: 16px; }
  .bc-legacy .big-num { font-size: 3rem; }

  .btn-primary,.btn-outline,.btn-white,.btn-iq,.btn-submit { font-size: 0.84rem; padding: 1.1rem 1.4rem; }

  .product-img { height: 200px; }
  .supply-grid { grid-template-columns: 1fr; }

  .form-card { padding: 1.25rem; border-radius: 14px; }
  .cc-icon { width: 38px; height: 38px; }

  .page-hero { min-height: 40vh; }
  .page-hero h1 { font-size: clamp(1.6rem,8vw,2rem); }

  .footer-grid { gap: 1.75rem; }
  .stat-num { font-size: 1.4rem; }

  .mobile-nav a { font-size: 1.3rem; }
}