/* ================================================================
   Lambgod Enterprise — Combined Stylesheet
   ================================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Poppins", sans-serif; color: #2d2a26; background: #faf7f2; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ───────────────────────────────────────────────────── */
.fm-header { position: sticky; top: 0; z-index: 100; }
.fm-header-top { background: #1a6b4a; padding: 0 24px; }
.fm-header-top-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 36px; }
.fm-header-promo { font-size: 12px; color: rgba(255,255,255,.9); letter-spacing: .2px; }
.fm-header-promo strong { color: #fff; font-weight: 700; }
.fm-header-top-links { display: flex; gap: 20px; }
.fm-header-top-link { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; text-transform: uppercase; letter-spacing: .5px; }
.fm-header-top-link:hover { color: #fff; }
.fm-nav { background: #fffdf9; border-bottom: 1px solid rgba(0,0,0,.06); padding: 0 24px; }
.fm-nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.fm-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.fm-logo-img { height: 40px; width: auto; }
.fm-nav-links { display: flex; gap: 32px; }
.fm-nav-link { font-size: 14px; font-weight: 500; color: #5a5a5a; text-decoration: none; transition: color .2s; position: relative; }
.fm-nav-link:hover { color: #1a6b4a; }
.fm-nav-link.active { color: #1a6b4a; font-weight: 600; }
.fm-nav-link:hover::after,
.fm-nav-link.active::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: #1a6b4a; border-radius: 1px; }
.fm-nav-actions { display: flex; align-items: center; gap: 12px; }
.fm-nav-cta { background: #1a6b4a; color: #fff; font-size: 13px; font-weight: 700; padding: 10px 24px; border-radius: 10px; text-decoration: none; transition: background .2s, transform .15s; letter-spacing: .2px; }
.fm-nav-cta:hover { background: #155a3d; transform: translateY(-1px); }

/* Hamburger */
.fm-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; width: 36px; height: 36px; position: relative; }
.fm-hamburger span { display: block; width: 22px; height: 2px; background: #2d2a26; border-radius: 2px; position: absolute; left: 7px; transition: all .25s ease; }
.fm-hamburger span:nth-child(1) { top: 10px; }
.fm-hamburger span:nth-child(2) { top: 17px; }
.fm-hamburger span:nth-child(3) { top: 24px; }
.fm-nav.open .fm-hamburger span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.fm-nav.open .fm-hamburger span:nth-child(2) { opacity: 0; }
.fm-nav.open .fm-hamburger span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .fm-nav-inner { flex-wrap: wrap; }
    .fm-nav-links { display: none; width: 100%; flex-direction: column; gap: 0; padding: 12px 0; border-top: 1px solid rgba(0,0,0,.06); }
    .fm-nav-link { padding: 12px 0; font-size: 15px; }
    .fm-nav-link::after { display: none !important; }
    .fm-nav-actions { display: none; }
    .fm-hamburger { display: block; }
    .fm-nav.open .fm-nav-links { display: flex; }
    .fm-nav.open .fm-nav-actions { display: flex; width: 100%; padding: 0 0 12px; }
    .fm-header-top-links { display: none; }
    .fm-header-promo { font-size: 11px; text-align: center; width: 100%; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.fm-hero { background: #faf7f2; padding: 60px 24px 80px; }
.fm-hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fm-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #e8f5e9; color: #1a6b4a; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 50px; margin-bottom: 20px; }
.fm-hero-title { font-size: clamp(40px, 5.5vw, 72px); font-weight: 900; color: #2d2a26; line-height: .95; margin: 0 0 20px; letter-spacing: -2px; }
.fm-hero-sub { font-size: 16px; color: #7a7672; line-height: 1.7; margin: 0 0 28px; max-width: 440px; }
.fm-hero-actions { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.fm-btn-primary { background: #1a6b4a; color: #fff; font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.fm-btn-primary:hover { background: #155a3d; transform: translateY(-1px); }
.fm-btn-outline { background: transparent; color: #2d2a26; font-size: 14px; font-weight: 600; padding: 11px 26px; border-radius: 50px; border: 2px solid #d6d3ce; text-decoration: none; transition: border-color .2s; }
.fm-btn-outline:hover { border-color: #1a6b4a; color: #1a6b4a; }
.fm-hero-stats { display: flex; gap: 32px; }
.fm-stat { display: flex; flex-direction: column; }
.fm-stat-num { font-size: 24px; font-weight: 800; color: #2d2a26; }
.fm-stat-label { font-size: 12px; color: #9a9590; }
.fm-hero-visual { position: relative; }
.fm-hero-img-wrap { border-radius: 24px; overflow: hidden; background: #e8e4dd; }
.fm-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fm-hero-card { position: absolute; background: #fff; border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.fm-hero-card-icon { font-size: 22px; }
.fm-hero-card-text { font-size: 13px; font-weight: 600; color: #2d2a26; }
.fm-hero-card-1 { bottom: 60px; left: -20px; }
.fm-hero-card-2 { top: 40px; right: -16px; }

@media (max-width: 900px) {
    .fm-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .fm-hero-sub { margin-left: auto; margin-right: auto; }
    .fm-hero-actions { justify-content: center; }
    .fm-hero-stats { justify-content: center; }
    .fm-hero-card { display: none; }
}

/* ── Section Common ───────────────────────────────────────────── */
.fm-section-header { text-align: center; margin-bottom: 36px; }
.fm-section-tag { display: inline-block; background: rgba(26,107,74,.1); color: #1a6b4a; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; }
.fm-section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #2d2a26; margin: 0 0 12px; letter-spacing: -1px; }
.fm-section-sub { font-size: 15px; color: #7a7672; margin: 0 auto; max-width: 520px; line-height: 1.6; }

/* ── Products Showcase ────────────────────────────────────────── */
.fm-products { background: #fff; padding: 80px 24px; }
.fm-products-inner { max-width: 1140px; margin: 0 auto; }
.fm-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.fm-product-card { border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; background: #fff; }
.fm-product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(0,0,0,.12); }
.fm-product-card-img { height: 220px; overflow: hidden; background: #f5f3ef; display: flex; align-items: center; justify-content: center; }
.fm-product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.fm-product-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fm-product-card-title { font-size: 16px; font-weight: 700; color: #2d2a26; margin: 0; }
.fm-product-card-price { font-size: 18px; font-weight: 800; color: #1a6b4a; margin: 0; }
.fm-product-card-price .fm-compare { font-size: 13px; font-weight: 500; color: #9a9590; text-decoration: line-through; margin-left: 6px; }
.fm-product-card-desc { font-size: 13px; color: #7a7672; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fm-product-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fm-product-card-tag { font-size: 11px; font-weight: 600; color: #1a6b4a; background: #ecfdf3; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(26,107,74,.2); }
.fm-product-card-btn { margin-top: auto; background: #1a6b4a; color: #fff; font-size: 13px; font-weight: 700; padding: 10px; border: none; border-radius: 10px; cursor: pointer; transition: background .2s; text-align: center; text-decoration: none; display: block; }
.fm-product-card-btn:hover { background: #155a3d; }

@media (max-width: 600px) {
    .fm-products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .fm-product-card-img { height: 160px; }
}

/* ── Shop Page ────────────────────────────────────────────────── */
.fm-shop { background: #fff; padding: 80px 24px; }
.fm-shop-inner { max-width: 1140px; margin: 0 auto; }
.fm-shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.fm-shop-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: #9a9590; }

@media (max-width: 600px) {
    .fm-shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ── Story / About ────────────────────────────────────────────── */
.fm-story { background: #faf7f2; padding: 80px 24px; }
.fm-story-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fm-story-img { position: relative; border-radius: 24px; overflow: hidden; }
.fm-story-img img { width: 100%; display: block; border-radius: 24px; }
.fm-story-badge { position: absolute; bottom: 20px; right: 20px; background: #1a6b4a; color: #fff; border-radius: 14px; padding: 14px 22px; text-align: center; }
.fm-story-badge-num { display: block; font-size: 26px; font-weight: 800; }
.fm-story-badge-lbl { font-size: 11px; opacity: .8; text-transform: uppercase; letter-spacing: .5px; }
.fm-story-title { text-align: left; }
.fm-story-text { font-size: 15px; color: #7a7672; line-height: 1.7; margin: 0 0 16px; }
.fm-story-highlights { display: flex; gap: 28px; margin-top: 24px; }
.fm-story-hl { display: flex; flex-direction: column; }
.fm-story-hl-num { font-size: 26px; font-weight: 800; color: #f5a623; }
.fm-story-hl-lbl { font-size: 12px; color: #9a9590; }

@media (max-width: 900px) {
    .fm-story-inner { grid-template-columns: 1fr; }
    .fm-story-title { text-align: center; }
}

/* ── Features ─────────────────────────────────────────────────── */
.fm-features { background: #fff; padding: 80px 24px; }
.fm-features-inner { max-width: 1140px; margin: 0 auto; }
.fm-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fm-feat-card { background: #faf7f2; border-radius: 20px; padding: 32px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.fm-feat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.fm-feat-icon { font-size: 32px; margin-bottom: 14px; }
.fm-feat-name { font-size: 16px; font-weight: 700; color: #2d2a26; margin: 0 0 8px; }
.fm-feat-desc { font-size: 13px; color: #7a7672; line-height: 1.6; margin: 0; }

@media (max-width: 768px) { .fm-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fm-features-grid { grid-template-columns: 1fr; } }

/* ── CTA ──────────────────────────────────────────────────────── */
.fm-cta { background: #1a6b4a; padding: 80px 24px; }
.fm-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.fm-cta-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #fff; margin: 0 0 16px; letter-spacing: -1px; }
.fm-cta-text { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.7; margin: 0 0 32px; }
.fm-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fm-cta-btn { background: #f5a623; color: #2d2a26; font-size: 14px; font-weight: 700; padding: 13px 30px; border-radius: 50px; text-decoration: none; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.fm-cta-btn:hover { background: #e09a1e; transform: translateY(-1px); }
.fm-cta-btn-light { background: transparent; color: #fff; font-size: 14px; font-weight: 600; padding: 12px 28px; border-radius: 50px; border: 2px solid rgba(255,255,255,.35); text-decoration: none; transition: border-color .2s; }
.fm-cta-btn-light:hover { border-color: #fff; }

/* ── Footer ───────────────────────────────────────────────────── */
.fm-footer { background: #1e1c19; }
.fm-footer-cta-band { background: #1a6b4a; padding: 48px 24px; }
.fm-footer-cta-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.fm-footer-cta-title { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px; letter-spacing: -.3px; }
.fm-footer-cta-sub { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; }
.fm-footer-cta-form { display: flex; gap: 0; flex-shrink: 0; }
.fm-footer-email { font-size: 14px; padding: 12px 18px; border: 2px solid rgba(255,255,255,.2); border-right: none; border-radius: 10px 0 0 10px; background: rgba(255,255,255,.1); color: #fff; outline: none; width: 240px; transition: border-color .2s; font-family: "Poppins", sans-serif; }
.fm-footer-email::placeholder { color: rgba(255,255,255,.45); }
.fm-footer-email:focus { border-color: rgba(255,255,255,.5); }
.fm-footer-subscribe { font-size: 13px; font-weight: 700; padding: 12px 24px; background: #f5a623; color: #2d2a26; border: 2px solid #f5a623; border-radius: 0 10px 10px 0; cursor: pointer; transition: background .2s; letter-spacing: .2px; white-space: nowrap; font-family: "Poppins", sans-serif; }
.fm-footer-subscribe:hover { background: #e09a1e; border-color: #e09a1e; }
.fm-footer-main { padding: 56px 24px 48px; }
.fm-footer-main-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; }
.fm-footer-brand-block { max-width: 320px; }
.fm-footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 16px; }
.fm-footer-logo-img { height: 36px; width: auto; }
.fm-footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin: 0 0 20px; }
.fm-footer-social { display: flex; gap: 12px; }
.fm-footer-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); transition: background .2s, color .2s; }
.fm-footer-social-link:hover { background: rgba(255,255,255,.15); color: #fff; }
.fm-footer-nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fm-footer-col { display: flex; flex-direction: column; gap: 10px; }
.fm-footer-heading { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; margin: 0 0 6px; }
.fm-footer-link { font-size: 14px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.fm-footer-link:hover { color: #fff; }
.fm-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 0 24px; }
.fm-footer-bottom-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.fm-footer-copy { font-size: 12px; color: rgba(255,255,255,.25); margin: 0; }
.fm-footer-legal { display: flex; gap: 20px; }
.fm-footer-legal-link { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.fm-footer-legal-link:hover { color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
    .fm-footer-cta-inner { flex-direction: column; text-align: center; }
    .fm-footer-cta-form { width: 100%; max-width: 400px; }
    .fm-footer-email { flex: 1; }
    .fm-footer-main-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .fm-footer-nav-cols { grid-template-columns: 1fr; }
    .fm-footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Contact Form ─────────────────────────────────────────────── */
.fm-contact { background: #faf7f2; padding: 80px 24px; }
.fm-contact-inner { max-width: 720px; margin: 0 auto; }
.fm-contact-form { display: grid; gap: 16px; margin-top: 32px; }
.fm-contact-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.fm-contact-form label { font-size: 13px; font-weight: 600; color: #2d2a26; margin-bottom: 4px; display: block; }
.fm-contact-form input,
.fm-contact-form textarea,
.fm-contact-form select { width: 100%; border-radius: 12px; border: 2px solid #e8e4dd; background: #fff; color: #2d2a26; padding: 12px 14px; font: 14px/1.4 "Poppins", sans-serif; outline: none; transition: border-color .2s; }
.fm-contact-form input::placeholder,
.fm-contact-form textarea::placeholder { color: #b5b0aa; }
.fm-contact-form input:focus,
.fm-contact-form textarea:focus,
.fm-contact-form select:focus { border-color: #1a6b4a; }
.fm-contact-form textarea { min-height: 140px; resize: vertical; }
.fm-contact-submit { justify-self: start; }
.fm-contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.fm-contact-info-card { background: #fff; border-radius: 16px; padding: 24px; text-align: center; border: 1px solid rgba(0,0,0,.06); }
.fm-contact-info-icon { font-size: 28px; margin-bottom: 10px; }
.fm-contact-info-title { font-size: 14px; font-weight: 700; color: #2d2a26; margin: 0 0 4px; }
.fm-contact-info-text { font-size: 13px; color: #7a7672; margin: 0; }
.fm-contact-info-text a { color: #1a6b4a; text-decoration: none; font-weight: 600; }
.fm-contact-info-text a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .fm-contact-grid { grid-template-columns: 1fr; }
    .fm-contact-info { grid-template-columns: 1fr; }
    .fm-contact-submit { width: 100%; justify-self: stretch; }
}

/* ── Alerts ───────────────────────────────────────────────────── */
.fm-alert { padding: 14px 20px; border-radius: 12px; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.fm-alert-success { background: #ecfdf3; color: #166534; border: 1px solid rgba(22,101,52,.15); }
.fm-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid rgba(153,27,27,.15); }

/* ── Page Header (reusable) ───────────────────────────────────── */
.fm-page-header { background: #1a6b4a; padding: 60px 24px; text-align: center; }
.fm-page-header-inner { max-width: 720px; margin: 0 auto; }
.fm-page-header h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin: 0 0 12px; letter-spacing: -1px; }
.fm-page-header p { font-size: 16px; color: rgba(255,255,255,.8); margin: 0; line-height: 1.6; }
