/* ═══════════════════════════════════════════════════════════════════════════
   VINFARM SECTION PAGES — sections.css (v1.1, 2026-09-26)
   Shared look for the section landing pages (farm.html, shop.html,
   academy.html) and the new site footer (team brief section 22).
   Plain CSS on purpose: styles.css is precompiled Tailwind, so new classes
   there need a rebuild. Everything here works as-is.
   Brand: emerald #1a4d2e / #2d6e47, deep #0f2e1c, gold #efb33d (CTAs,
   badges, highlights only), cream #fdfbf6, mint #f1f8f3.
   ═══════════════════════════════════════════════════════════════════════════ */

.lp-wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .lp-wrap { padding: 0 28px; } }

/* ── Buttons ── */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 12px; font-weight: 800; font-size: 15px;
  text-decoration: none; transition: transform .15s, background .15s, border-color .15s; cursor: pointer; border: 0; }
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.lp-btn-gold { background: #efb33d; color: #1a3d24; box-shadow: 0 12px 26px -14px rgba(180,120,20,.8); }
.lp-btn-gold:hover { background: #f7c256; }
.lp-btn-green { background: #1a4d2e; color: #fdfbf6; }
.lp-btn-green:hover { background: #22603a; }
.lp-btn-ghost { background: rgba(253,251,246,.08); color: #fdfbf6; border: 1.5px solid rgba(253,251,246,.45); }
.lp-btn-ghost:hover { background: rgba(253,251,246,.16); border-color: #fdfbf6; }
.lp-btn-line { background: #fff; color: #1a4d2e; border: 1.5px solid #cfe3d6; }
.lp-btn-line:hover { border-color: #2d6e47; }

/* ── Hero ── */
.lp-hero { background: radial-gradient(120% 140% at 0% 0%, #1f5a36 0%, #133a24 55%, #0f2e1c 100%); color: #fdfbf6; overflow: hidden; }
.lp-hero-in { display: grid; gap: 34px; align-items: center; padding-top: 48px; padding-bottom: 52px; }
@media (min-width: 960px) { .lp-hero-in { grid-template-columns: 1.02fr 1fr; gap: 48px; padding-top: 64px; padding-bottom: 70px; } }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: rgba(239,179,61,.16); color: #f7c256; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lp-eyebrow svg { width: 15px; height: 15px; }
.lp-hero h1 { margin: 18px 0 0; font-size: clamp(34px, 5.4vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -.02em; }
.lp-hero h1 em { font-style: normal; color: #efb33d; }
.lp-hero p.lp-lead { margin: 18px 0 0; font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.6; color: rgba(253,251,246,.86); max-width: 36em; }
.lp-hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.lp-hero-img { position: relative; }
.lp-hero-img img { width: 100%; display: block; border-radius: 22px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.65); border: 4px solid rgba(253,251,246,.08); }
.lp-hero-tag { position: absolute; left: 16px; bottom: 16px; background: #fdfbf6; color: #1a3d24; border-radius: 12px;
  padding: 10px 14px; font-size: 13px; font-weight: 700; box-shadow: 0 12px 30px -12px rgba(0,0,0,.5); display: flex; align-items: center; gap: 8px; }
.lp-hero-tag svg { width: 18px; height: 18px; color: #2d6e47; }
.lp-hero-facts { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13.5px; font-weight: 600; color: rgba(253,251,246,.82); }
.lp-hero-facts span { display: inline-flex; align-items: center; gap: 7px; }
.lp-hero-facts svg { width: 17px; height: 17px; color: #efb33d; }

/* ── Jump chips ── */
.lp-jump { background: #fff; border-bottom: 1px solid #e7f1ea; }
.lp-jump-in { display: flex; gap: 8px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; scrollbar-width: none; }
.lp-jump-in::-webkit-scrollbar { display: none; }
.lp-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px;
  background: #f1f8f3; color: #1a4d2e; font-size: 14px; font-weight: 700; text-decoration: none; border: 1px solid #dcefe1; white-space: nowrap; }
.lp-chip:hover { background: #e3f1e7; }
.lp-chip svg { width: 16px; height: 16px; }

/* ── Sections ── */
.lp-sec { padding: 56px 0; scroll-margin-top: 90px; }
@media (min-width: 960px) { .lp-sec { padding: 72px 0; } }
.lp-sec-mint { background: #f6faf7; }
.lp-sec-cream { background: #fdfbf6; }
.lp-head { max-width: 720px; margin-bottom: 28px; }
.lp-head.lp-center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-kicker { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #b07d1c; }
.lp-head h2 { margin: 8px 0 0; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; font-weight: 800; color: #14391f; letter-spacing: -.015em; }
.lp-head p { margin: 10px 0 0; font-size: 16.5px; line-height: 1.6; color: #4b5563; }
.lp-group-title { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; }
.lp-group-title .lp-ic { width: 42px; height: 42px; border-radius: 12px; background: #1a4d2e; color: #efb33d; display: grid; place-items: center; flex-shrink: 0; }
.lp-group-title .lp-ic svg { width: 22px; height: 22px; }
.lp-group-title h3 { margin: 0; font-size: 22px; font-weight: 800; color: #14391f; }
.lp-group-title p { margin: 2px 0 0; font-size: 14px; color: #6b7280; }
.lp-group + .lp-group { margin-top: 48px; }

/* ── Cards ── */
.lp-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .lp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1100px) { .lp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lp-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #e3eee7; border-radius: 18px;
  overflow: hidden; box-shadow: 0 14px 32px -28px rgba(15,40,20,.6); scroll-margin-top: 110px; transition: box-shadow .2s, transform .2s; }
.lp-card:hover { box-shadow: 0 22px 40px -26px rgba(15,40,20,.55); transform: translateY(-2px); }
.lp-card:target { outline: 3px solid #efb33d; outline-offset: 3px; }
.lp-card-img { aspect-ratio: 4 / 3; background: #eef5f0; overflow: hidden; }
.lp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.lp-card:hover .lp-card-img img { transform: scale(1.04); }
.lp-card-ph { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, #e3f1e7, #f6faf7 60%, #fdf1d6); color: #2d6e47; }
.lp-card-ph svg { width: 56px; height: 56px; opacity: .8; }
.lp-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 640px) { .lp-card-body { padding: 16px 18px 18px; } }
.lp-card h4 { margin: 0; font-size: 16.5px; font-weight: 800; color: #14391f; line-height: 1.25; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.lp-card p { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; color: #56606a; flex: 1; }
.lp-card-acts { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.lp-a { display: inline-flex; align-items: center; gap: 5px; min-height: 36px; padding: 7px 12px; border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none; }
.lp-a-main { background: #1a4d2e; color: #fdfbf6; }
.lp-a-main:hover { background: #22603a; }
.lp-a-soft { background: #f1f8f3; color: #1a4d2e; }
.lp-a-soft:hover { background: #e3f1e7; }
.lp-badge { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: #fdf1d6; color: #8a5a07; border-radius: 999px; padding: 3px 8px; }
.lp-badge-green { background: #e3f1e7; color: #1a4d2e; }
.lp-price { margin-top: 8px; font-size: 16px; font-weight: 800; color: #14391f; }
.lp-price small { font-size: 12px; font-weight: 600; color: #6b7280; }

/* ── Feature strip ── */
.lp-strip { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 960px) { .lp-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lp-strip-item { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid #e3eee7; border-radius: 16px; padding: 16px; }
.lp-strip-item .lp-ic { width: 40px; height: 40px; border-radius: 11px; background: #f1f8f3; color: #2d6e47; display: grid; place-items: center; flex-shrink: 0; }
.lp-strip-item .lp-ic svg { width: 20px; height: 20px; }
.lp-strip-item h5 { margin: 0; font-size: 14.5px; font-weight: 800; color: #14391f; }
.lp-strip-item p { margin: 3px 0 0; font-size: 13px; color: #6b7280; line-height: 1.45; }

/* ── Ecosystem (Learn / Buy / Manage / Visit) ── */
.lp-eco { display: grid; gap: 14px; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) { .lp-eco { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lp-eco { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lp-eco a { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: 18px; text-decoration: none;
  background: #fff; border: 1px solid #e3eee7; transition: border-color .15s, transform .15s; }
.lp-eco a:hover { border-color: #2d6e47; transform: translateY(-2px); }
.lp-eco .lp-verb { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #b07d1c; }
.lp-eco h4 { margin: 0; font-size: 19px; font-weight: 800; color: #14391f; }
.lp-eco p { margin: 0; font-size: 14px; color: #56606a; line-height: 1.5; }
.lp-eco .lp-go { margin-top: 6px; font-size: 13.5px; font-weight: 800; color: #2d6e47; }
.lp-eco .lp-ic { width: 44px; height: 44px; border-radius: 12px; background: #1a4d2e; color: #efb33d; display: grid; place-items: center; margin-bottom: 6px; }
.lp-eco .lp-ic svg { width: 22px; height: 22px; }

/* ── Photo band ── */
.lp-band { display: grid; gap: 28px; align-items: center; }
@media (min-width: 960px) { .lp-band { grid-template-columns: 1.05fr 1fr; gap: 48px; } }
.lp-band img { width: 100%; display: block; border-radius: 22px; box-shadow: 0 24px 50px -30px rgba(15,40,20,.7); }
.lp-band ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.lp-band li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #374151; line-height: 1.5; }
.lp-band li svg { width: 19px; height: 19px; color: #2d6e47; flex-shrink: 0; margin-top: 2px; }
.lp-band .lp-hero-ctas { margin-top: 24px; }

/* ── Dark CTA ── */
.lp-cta { background: #0f2e1c; color: #fdfbf6; border-radius: 24px; padding: 34px 26px; display: grid; gap: 20px; align-items: center; }
@media (min-width: 900px) { .lp-cta { grid-template-columns: 1.4fr auto; padding: 42px 48px; } }
.lp-cta h3 { margin: 0; font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; line-height: 1.2; }
.lp-cta p { margin: 8px 0 0; color: rgba(253,251,246,.8); font-size: 15.5px; line-height: 1.55; }
.lp-cta .lp-hero-ctas { margin-top: 0; }

/* ── Forms ── */
.lp-form { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lp-form { grid-template-columns: 1fr 1fr; } .lp-form .lp-full { grid-column: 1 / -1; } }
.lp-form label { display: block; font-size: 13.5px; font-weight: 700; color: #14391f; margin-bottom: 6px; }
.lp-form input, .lp-form select, .lp-form textarea { width: 100%; box-sizing: border-box; font: inherit; font-size: 16px; color: #1f2937;
  background: #fdfbf6; border: 1.5px solid #dcefe1; border-radius: 12px; padding: 12px 14px; outline: none; }
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus { border-color: #2d6e47; background: #fff; }
.lp-form textarea { min-height: 96px; resize: vertical; }
.lp-form .lp-hint { font-size: 12.5px; color: #6b7280; margin-top: 4px; }
.lp-form-card { background: #fff; border: 1px solid #e3eee7; border-radius: 22px; padding: 22px; box-shadow: 0 20px 40px -34px rgba(15,40,20,.6); }
@media (min-width: 640px) { .lp-form-card { padding: 30px; } }
.lp-status { margin-top: 12px; font-size: 14.5px; color: #1a4d2e; font-weight: 600; }
.lp-status a { color: #1a4d2e; text-decoration: underline; font-weight: 800; }

/* ── Small helpers ── */
.lp-two { display: grid; gap: 28px; }
@media (min-width: 960px) { .lp-two { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; } }
.lp-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 9px; }
.lp-list li { display: flex; gap: 10px; font-size: 15px; color: #374151; line-height: 1.5; }
.lp-list li svg { width: 18px; height: 18px; color: #2d6e47; flex-shrink: 0; margin-top: 2px; }
.lp-note { font-size: 13px; color: #6b7280; margin-top: 16px; }

/* ═══════════ NEW SITE FOOTER (brief section 22) ═══════════ */
.vff { background: #0f2e1c; color: rgba(253,251,246,.82); margin-top: 0; }
.vff a { color: rgba(253,251,246,.82); text-decoration: none; }
.vff a:hover { color: #efb33d; }
.vff-in { max-width: 1240px; margin: 0 auto; padding: 48px 20px 24px; display: grid; gap: 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .vff-in { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 56px 28px 28px; } }
@media (min-width: 1100px) { .vff-in { grid-template-columns: 1.5fr repeat(5, minmax(0, 1fr)); } }
.vff-brand { grid-column: 1 / -1; }
@media (min-width: 1100px) { .vff-brand { grid-column: auto; } }
.vff-logo { display: flex; align-items: center; gap: 10px; }
.vff-logo img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.vff-logo b { display: block; font-size: 19px; font-weight: 800; color: #fdfbf6; letter-spacing: .06em; }
.vff-logo i { display: block; font-style: normal; font-size: 11.5px; color: #efb33d; font-weight: 700; letter-spacing: .12em; }
.vff-brand p { margin: 14px 0 0; font-size: 14px; line-height: 1.6; max-width: 26em; }
.vff-contact { margin-top: 14px; display: grid; gap: 6px; font-size: 13.5px; }
.vff h6 { margin: 0 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fdfbf6; }
.vff ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14px; }
.vff-bottom { border-top: 1px solid rgba(253,251,246,.12); }
.vff-bottom-in { max-width: 1240px; margin: 0 auto; padding: 18px 20px 26px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: 12.5px; color: rgba(253,251,246,.6); }
.vff-motto { letter-spacing: .28em; font-weight: 700; color: rgba(253,251,246,.5); }
