/* BoraAfrika — Alko-inspired agro luxury */
:root {
  --green: #1e5631;
  --green-dark: #153d24;
  --orange: #d97706;
  --orange-soft: #e8a04a;
  --cream: #f5f0e1;
  --cream-dark: #e8e0d0;
  --ink: #1a1a1a;
  --muted: #5c5346;
  --sidebar-w: 280px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
}

.ba-shell { display: flex; min-height: 100vh; }

/* Sidebar */
.ba-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--green);
  color: #e8e4dc;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,.06);
}
.ba-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ba-logo__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.ba-logo__text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f0e1;
}
.ba-logo__sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.25rem;
}
.ba-nav { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.ba-nav__link {
  color: rgba(245, 240, 225, 0.82);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.ba-nav__link:hover, .ba-nav__link.is-active {
  color: var(--orange-soft);
  border-bottom-color: rgba(217, 119, 6, 0.45);
}
.ba-sidebar__foot { margin-top: auto; padding-top: 1.5rem; }
.ba-copy { font-size: 0.65rem; opacity: 0.55; margin: 0 0 1rem; line-height: 1.5; }
.ba-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.ba-social:empty { display: none; }
.ba-social__i {
  --ba-social-ring: rgba(255, 255, 255, 0.14);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ba-social-ring);
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.2s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}
.ba-social__i:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: brightness(1.05);
}
.ba-social__i:active {
  transform: translateY(-1px) scale(1.02);
}
.ba-social__i:focus-visible {
  outline: 2px solid var(--orange-soft);
  outline-offset: 3px;
}
.ba-social__svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
.ba-social__i--facebook {
  background: linear-gradient(145deg, #2d8ff4 0%, #1877f2 45%, #0d65d9 100%);
  color: #fff;
}
.ba-social__i--twitter {
  background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.ba-social__i--twitter:hover {
  filter: brightness(1.02);
}
.ba-social__i--instagram {
  background: radial-gradient(circle at 30% 120%, #fdfdfd 0%, #ececec 55%, #e8e8e8 100%);
  padding: 2px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ba-social__i--instagram .ba-social__svg {
  width: 1.35rem;
  height: 1.35rem;
}
.ba-social__i--youtube {
  padding: 0;
  overflow: hidden;
  line-height: 0;
  border-color: rgba(255, 80, 80, 0.35);
  box-shadow:
    0 2px 8px rgba(180, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.ba-social__i--youtube:hover {
  box-shadow:
    0 8px 22px rgba(180, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.06);
}
.ba-social__i--youtube .ba-social__svg--yt {
  width: 2.5rem;
  height: 2.5rem;
}
.ba-social__i--nolink {
  cursor: help;
  opacity: 0.78;
}
.ba-social__i--nolink:hover {
  transform: none;
  filter: none;
  border-color: var(--ba-social-ring);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.ba-sidebar__close { display: none; }

.ba-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  position: relative;
}

/* Paper texture sections */
.ba-paper {
  background-color: var(--cream);
  background-image: var(--paper);
}

/* Sub nav */
.ba-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.35);
}
.ba-subnav a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.ba-subnav a.is-active {
  color: var(--ink);
  font-weight: 700;
}

/* Hero */
.ba-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--green-dark) center/cover no-repeat;
  color: #fff;
}
.ba-hero--products {
  min-height: 82vh;
  background-position: center 35%;
}
.ba-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(12, 40, 22, 0.92) 0%, rgba(30, 86, 49, 0.55) 42%, rgba(0, 0, 0, 0.5) 100%);
}
.ba-hero__deck {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 36rem;
  opacity: 0.94;
  font-weight: 400;
}
.ba-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem;
  max-width: 640px;
}
.ba-hero__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.ba-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
.ba-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.ba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s;
}
.ba-btn:hover { transform: translateY(-1px); }
.ba-btn--gold {
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  color: #1a1208;
}
.ba-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.ba-btn--wa {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.ba-btn--wa:hover { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
.ba-btn--dark { background: #222; color: var(--cream); }
.ba-btn--send { width: 100%; margin-top: 0.5rem; }
.ba-btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
}
.ba-btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(30, 86, 49, 0.35);
}
.ba-btn--goldline {
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  color: #1a1208;
  border: 1px solid rgba(0,0,0,.08);
}
.ba-btn--outline-dark {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

/* Stats */
.ba-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.08);
  margin: 0;
}
.ba-stats__cell {
  background: var(--cream);
  padding: 1.75rem 1rem;
  text-align: center;
  background-image: var(--paper);
}
.ba-stats__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
  display: block;
}
.ba-stats__lbl {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ba-stats--brand .ba-stats__cell {
  padding: 2rem 1rem;
}
.ba-stats--brand .ba-stats__num {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: #8b2942;
}
.ba-stats--brand .ba-stats__lbl {
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* Grids */
.ba-section { padding: 3rem 2rem; }
.ba-section__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ba-section__lead { color: var(--muted); max-width: 720px; margin-bottom: 2rem; line-height: 1.65; }

.ba-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ba-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .ba-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ba-grid-3 { grid-template-columns: 1fr; }
  .ba-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .ba-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ba-grid-5 { grid-template-columns: 1fr; }
}

.ba-card {
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 12px 40px rgba(30,86,49,.08);
  border: 1px solid rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}
.ba-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.ba-card__h {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}
.ba-card__p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0 0 1rem; flex: 1; }
.ba-card__more {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: var(--cream-dark);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--ink);
  text-decoration: none;
}

/* Product card */
.ba-pcard {
  text-align: center;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  padding: 0 0 1.5rem;
  box-shadow: 0 16px 48px rgba(30, 86, 49, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ba-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(30, 86, 49, 0.14);
}
.ba-pcard__visual {
  width: 100%;
  background: linear-gradient(180deg, #faf8f3 0%, #f0ebe0 100%);
  padding: 1.25rem 1rem 1rem;
  margin-bottom: 1rem;
}
.ba-pcard__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.ba-pcard .ba-pcard__title,
.ba-pcard .ba-pcard__sub,
.ba-pcard .ba-pcard__desc,
.ba-pcard .ba-pcard__row {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.ba-pcard__title {
  font-family: var(--font-serif);
  color: var(--orange);
  font-size: 1rem;
  margin: 0 0 0.25rem;
}
.ba-pcard__sub { font-size: 0.75rem; font-weight: 700; color: #8b2942; margin-bottom: 0.5rem; }
.ba-pcard__desc { font-size: 0.82rem; color: var(--muted); text-align: left; margin-bottom: 1rem; }
.ba-pcard__row { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }

/* Carousel */
.ba-carousel-wrap { position: relative; margin-top: 1rem; }
.ba-carousel-wrap--scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  margin-left: 0;
  margin-right: 0;
  scrollbar-width: thin;
}
.ba-carousel-wrap--scroll:focus {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.ba-carousel {
  display: flex;
  gap: 1.25rem;
  padding: 0.25rem 0.25rem 0.5rem;
}
.ba-carousel .ba-pcard {
  min-width: min(280px, 85vw);
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.ba-carousel-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0 2rem 0.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ba-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(30, 86, 49, 0.25);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--green);
  transition: background 0.15s, color 0.15s;
}
.ba-icon-btn:hover {
  background: var(--green);
  color: #fff;
}
.ba-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ba-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.ba-carousel__dot.is-on { background: var(--green); }

/* Split / people */
.ba-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.ba-split__cream { background: var(--cream); background-image: var(--paper); padding: 2.5rem; }
.ba-split__earth { background: linear-gradient(160deg, #6b4c1e, var(--orange) 120%); color: #fff; padding: 2.5rem; }
.ba-split__name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.ba-split__role { font-weight: 700; font-size: 0.85rem; margin-bottom: 1rem; opacity: 0.95; }
.ba-split__bio { line-height: 1.7; font-size: 0.92rem; opacity: 0.95; }
@media (max-width: 900px) { .ba-split { grid-template-columns: 1fr; } }

/* Vision / quote boxes */
.ba-box-red {
  background: #9a2c2c;
  color: #fff;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.55;
}
.ba-box-vision {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 2rem;
  margin-bottom: 1rem;
}
.ba-box-vision h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* Events row */
.ba-event {
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 0;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  align-items: stretch;
}
.ba-event__img {
  min-height: 140px;
  background: var(--cream-dark) center/cover;
}
.ba-event__body { padding: 1.5rem; }
.ba-event__title {
  font-family: var(--font-serif);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.ba-event__date {
  background: #9a2c2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem;
}
@media (max-width: 700px) {
  .ba-event { grid-template-columns: 1fr; }
  .ba-event__date { flex-direction: row; min-height: auto; padding: 1rem; }
}

/* Visit tabs */
.ba-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 2rem;
}
.ba-tabs a {
  color: var(--orange-soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid transparent;
}
.ba-tabs a.is-active {
  color: #f5f0e1;
  border-bottom-color: #c44;
}

/* Contact / dark panel */
.ba-dark-panel {
  background: #0a0a0a;
  color: #e8d9b5;
  padding: 2.5rem;
  min-height: 400px;
}
.ba-dark-panel label { display: block; margin-bottom: 1rem; font-size: 0.8rem; }
.ba-dark-panel input, .ba-dark-panel textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  background: #1a1510;
  border: 1px solid rgba(232, 217, 181, 0.35);
  color: #fff;
  font-family: inherit;
}
.ba-map-col {
  min-height: 500px;
  background: #222;
}
.ba-map-col iframe { width: 100%; height: 100%; min-height: 500px; border: 0; display: block; }

.ba-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
@media (max-width: 900px) { .ba-contact-grid { grid-template-columns: 1fr; } }

.ba-visit-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  background: #0a0a0a;
  color: #e8d9b5;
}
@media (max-width: 900px) {
  .ba-visit-top { grid-template-columns: 1fr; }
}

/* Agents list */
.ba-agents { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ba-agents h3 {
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}
.ba-agents ol { padding-left: 1.1rem; margin: 0; color: #e8dcc8; }
.ba-agents li { margin-bottom: 1.25rem; line-height: 1.5; }
.ba-agents strong { color: #fff; }

/* Product detail */
.ba-pdetail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.ba-pdetail__visual {
  background: var(--cream);
  background-image: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.ba-pdetail__info {
  background: linear-gradient(165deg, #8b6914, var(--orange) 140%);
  background-image: var(--paper), linear-gradient(165deg, #8b6914, var(--orange) 140%);
  color: #fff;
  padding: 3rem 2.5rem;
}
.ba-pdetail__info h1 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.25rem;
}
.ba-pdetail__info .sub { letter-spacing: 0.2em; font-size: 0.8rem; opacity: 0.95; margin-bottom: 1.25rem; }
@media (max-width: 900px) { .ba-pdetail { grid-template-columns: 1fr; } }

/* Modal */
.ba-modal[hidden] { display: none !important; }
.ba-modal.is-open {
  display: flex !important;
}
.ba-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ba-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}
.ba-modal__box {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.ba-modal__box--order {
  background: #9a2c2c;
  color: #fff;
  padding: 2rem 1.75rem;
}
.ba-modal__box--order.ba-modal__box--float {
  padding: 1.2rem 1.35rem 1.35rem;
  max-width: min(380px, calc(100vw - 1.75rem));
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.ba-modal__hint--tight {
  margin: -0.15rem 0 0.75rem;
  font-size: 0.72rem;
  opacity: 0.88;
  line-height: 1.45;
}
.ba-modal__box--float .ba-modal__title {
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  padding-right: 1.75rem;
}
.ba-modal__box--float .ba-form--dark label {
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
}
.ba-modal__box--float .ba-form--dark input,
.ba-modal__box--float .ba-form--dark textarea {
  padding: 0.45rem 0.55rem;
  margin-top: 0.22rem;
}
.ba-modal__box--float .ba-btn--send {
  margin-top: 0.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .ba-modal:has(.ba-modal__box--float) {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 1rem 5.75rem 0;
  }
  .ba-modal:has(.ba-modal__box--float) .ba-modal__box--float {
    max-height: min(440px, calc(100vh - 6.5rem));
  }
}
@media (max-width: 767px) {
  .ba-modal:has(.ba-modal__box--float) {
    align-items: flex-end;
    padding: 0;
  }
  .ba-modal:has(.ba-modal__box--float) .ba-modal__box--float {
    max-width: none;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: min(78vh, 520px);
  }
}
.ba-modal__x {
  position: absolute;
  right: 1rem; top: 0.75rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.ba-modal__title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-right: 2rem;
}
.ba-form--dark label { display: block; margin-bottom: 0.85rem; font-size: 0.8rem; }
.ba-form--dark input, .ba-form--dark textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-family: inherit;
}

/* Gallery */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.ba-gallery a {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.ba-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.ba-lightbox[hidden] { display: none; }
.ba-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.ba-lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.ba-lightbox__close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Floating */
.ba-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.ba-float__wa {
  background: #25d366;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.ba-float__inquire {
  background: var(--orange);
  color: #1a1208;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.ba-menu-btn {
  display: none;
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 110;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
}
.ba-lang-toggle {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 110;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  background: rgba(255,255,255,.9);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}
.ba-page--home .ba-lang-toggle { color: #fff; background: rgba(30,86,49,.85); }

@media (max-width: 900px) {
  .ba-menu-btn { display: block; }
  .ba-sidebar {
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  .ba-sidebar.is-open { transform: translateX(0); }
  .ba-sidebar__close {
    display: block;
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
  }
  .ba-sidebar__scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99;
  }
  .ba-sidebar__scrim:not([hidden]) { display: block; }
  .ba-main { margin-left: 0; }
}

/* Flash messages */
.ba-flash {
  margin: 0;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.ba-flash--ok {
  background: linear-gradient(90deg, #1e5631, #2a7a45);
  color: #fff;
}
.ba-flash--err {
  background: #9a2c2c;
  color: #fff;
}

/* Home: CTA bar, pillars, featured band */
.ba-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.ba-section--tight { padding-top: 2.5rem; }
.ba-section__title--center { text-align: center; width: 100%; }
.ba-section__head { max-width: 720px; margin: 0 auto 1rem; padding: 0 2rem; text-align: center; }
.ba-section__head .ba-section__lead { margin-left: auto; margin-right: auto; }
.ba-section--featured {
  background: linear-gradient(180deg, #f8f4ea 0%, var(--cream) 45%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.ba-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 1rem;
}
@media (max-width: 900px) {
  .ba-pillars { grid-template-columns: 1fr; }
}
.ba-pillar {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.ba-pillar__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ba-pillar__h {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.65rem;
}
.ba-pillar__p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.92rem; }

.ba-grid-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
@media (max-width: 1000px) {
  .ba-grid-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ba-grid-process { grid-template-columns: 1fr; }
}
.ba-step-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.ba-step-card__n {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.ba-step-card__h {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.ba-step-card__p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.ba-section__cta-line {
  text-align: center;
  margin: 0;
  padding: 0 2rem 1rem;
  font-size: 0.88rem;
}
.ba-link-strong {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 86, 49, 0.35);
}
.ba-link-strong:hover { color: var(--orange); border-bottom-color: var(--orange); }
.ba-dot { margin: 0 0.5rem; opacity: 0.45; }

.ba-section--video {
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  padding: 3rem 2rem;
}
.ba-video-frame {
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.ba-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.ba-grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ba-modal__hint {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Float WhatsApp icon */
.ba-float__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ba-float__wa-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ba-float__wa--muted {
  background: #3d3d3d;
}

/* Product detail image */
.ba-pdetail__visual img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.12));
}

/* Utility */
.ba-centerline {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  line-height: 1.75;
  color: var(--muted);
}
.ba-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.ba-hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.ba-hero-dots button.is-on { background: #fff; }

.ba-download-bar {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ba-btn--download {
  background: #9a2c2c;
  color: #fff;
  border-radius: 4px;
}

/* agriBORA-style feature strip (storage / finance / markets) */
.ba-bora-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 800px) { .ba-bora-strip { grid-template-columns: 1fr; } }
.ba-bora-card {
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  background: #fff;
  box-shadow: 0 8px 28px rgba(30,86,49,.07);
}
.ba-bora-card h3 { margin: 0 0 0.5rem; font-size: 1rem; color: var(--green); }
.ba-bora-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
