/* ==========================================================================
   Kakone Coffee — Brand Stylesheet
   Palette: teal-dark #204D48, teal #2E6B63, brown #955F31, cream #F3F1EA
   ========================================================================== */

:root {
  --teal-dark: #204D48;
  --teal: #2E6B63;
  --teal-light: #7E9B94;
  --teal-pale: #E7EEEC;
  --brown: #955F31;
  --brown-dark: #6E4623;
  --sand: #D8D3C6;
  --cream: #F3F1EA;
  --gray: #595959;
  --gray-light: #8B9C97;
  --ink: #24302D;
  --white: #FFFFFF;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --container: 1160px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(32, 77, 72, 0.10);
  --shadow-sm: 0 2px 10px rgba(32, 77, 72, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--gray); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}
.lede {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 640px;
}
.section {
  padding: 88px 0;
}
.section--cream { background: var(--cream); }
.section--teal {
  background: var(--teal-dark);
  color: var(--white);
}
.section--teal h2, .section--teal h3 { color: var(--white); }
.section--teal p { color: rgba(255,255,255,0.78); }
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin: 0 0 48px; text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover { background: var(--brown-dark); }
.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}
.btn-outline-dark:hover { background: var(--teal-dark); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--sand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--teal-dark);
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name span { color: var(--brown); }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: var(--teal-pale); color: var(--teal-dark); }
.main-nav a.is-active { color: var(--teal-dark); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn-primary { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--teal-pale);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal-dark);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 62%, #3d7d73 100%);
  color: var(--white);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 110px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.85); font-size: 1.18rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art > svg { width: 100%; height: auto; display: block; }
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background: var(--white);
  color: var(--teal-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 260px;
}
.hero-badge svg { flex-shrink: 0; }
.hero-bg-beans {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  z-index: 1;
}

/* ---------------- Cards / Grids ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: flex-start;
}
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.96rem; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-light);
  opacity: 0.55;
  margin-bottom: 10px;
  display: block;
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* Timeline (phases) */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(255,255,255,0.25);
}
.timeline-item { position: relative; padding: 0 18px; text-align: left; }
.timeline-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.timeline-item h3 { font-size: 1.08rem; }
.timeline-item p { font-size: 0.92rem; }

/* Stockists */
.stockist-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.stockist-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-dark);
}
.stockist-pill svg { width: 16px; height: 16px; color: var(--brown); }

/* Location cards */
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.market-card-head {
  background: var(--teal-dark);
  color: var(--white);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.market-card-head .flag-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.market-card-head h3 { color: var(--white); margin: 0; font-size: 1.3rem; }
.market-card-head span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.market-card-body { padding: 30px 32px; }
.outlet-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream);
}
.outlet-list li:last-child { border-bottom: none; }
.outlet-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.outlet-icon svg { width: 18px; height: 18px; color: var(--teal-dark); }
.outlet-name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.outlet-desc { font-size: 0.88rem; color: var(--gray); margin: 2px 0 0; }

/* Quote / callout */
.callout {
  background: var(--teal-pale);
  border-radius: var(--radius);
  padding: 30px 32px;
  border-left: 4px solid var(--brown);
}
.callout p { color: var(--teal-dark); margin: 0; font-weight: 500; }

/* CTA band */
.cta-band {
  background: var(--brown);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); }

/* ---------------- Forms ---------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--teal-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-top: 4px;
}
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #E4F3E6; color: #1F6B33; }
.form-status.is-error { background: #FBE7E4; color: #A33A2C; }

.contact-info-card {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 18px;
  padding: 40px 36px;
}
.contact-info-card h3 { color: var(--white); }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .outlet-icon { background: rgba(255,255,255,0.14); }
.contact-row .outlet-icon svg { color: var(--white); }
.contact-row a { font-weight: 600; }
.contact-row .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 3px; }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  background: var(--cream);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { }
.page-hero p.lede { margin: 0 auto; }
.crumbs {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 18px;
}
.crumbs a:hover { color: var(--teal); }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 68px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand .brand-name span { color: #E3B27E; }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 320px; font-size: 0.92rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 12px; font-size: 0.94rem; }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-line svg { flex-shrink: 0; margin-top: 3px; width: 15px; height: 15px; color: #E3B27E; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- Utility ---------------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.text-white { color: var(--white); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 70px; text-align: center; }
  .hero .lede { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .market-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow-sm);
    padding: 12px;
  }
  .main-nav.is-open ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.is-open a { padding: 14px 16px; }
  .main-nav.is-open .mobile-cta { display: block; margin-top: 8px; }
  .section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.main-nav .mobile-cta { display: none; }

/* ==========================================================================
   Expansion components (Home stats, client logos, services, coffee, careers,
   resources/blog, gallery, customers, two-office contact)
   ========================================================================== */

/* Nav: allow wrap on medium widths so the larger page set doesn't overflow */
@media (min-width: 721px) {
  .main-nav ul { flex-wrap: wrap; row-gap: 4px; justify-content: flex-end; }
  .main-nav a { padding: 10px 13px; font-size: 0.9rem; }
}
@media (max-width: 980px) and (min-width: 721px) {
  .header-inner { height: auto; padding: 14px 0; flex-wrap: wrap; row-gap: 10px; }
  .site-header { position: sticky; }
}

/* Key figures stat row (Home) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 34px 20px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 600;
}

/* Client / partner logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.logo-chip {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  width: 160px;
}
.logo-chip img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }
.logo-chip.text-only { font-family: var(--font-head); font-weight: 700; color: var(--teal-dark); font-size: 0.95rem; text-align: center; }

/* Every-cup poster band */
.poster-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.poster-band img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Product / coffee line cards */
.coffee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.coffee-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.coffee-card-head {
  padding: 26px 28px 0;
}
.coffee-card-head .eyebrow { margin-bottom: 6px; }
.coffee-card-body { padding: 8px 28px 30px; }
.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.taste-pill {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.coffee-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
  border-top: 1px solid var(--cream);
  padding-top: 16px;
  margin-top: 4px;
}
.coffee-meta strong { color: var(--teal-dark); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.mulondo-card { border: 2px solid var(--brown); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 14px 0; }
.benefit-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.benefit-list li svg { width: 18px; height: 18px; color: var(--brown); flex-shrink: 0; }
.disclaimer {
  font-size: 0.8rem;
  color: var(--gray-light);
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 18px;
}

/* Service blocks */
.service-block { padding: 64px 0; border-bottom: 1px solid var(--sand); }
.service-block:last-child { border-bottom: none; }
.service-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.service-photo-grid figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-photo-grid img { width: 100%; height: 190px; object-fit: cover; }
.service-photo-grid figcaption { padding: 10px 14px; font-size: 0.82rem; color: var(--gray); background: var(--white); }
/* Taller, uncropped variant for documentary/story photos (portrait shots of
   people) where cropping to a short strip cuts off faces or the moment being
   captured — nothing gets cut off here. */
.service-photo-grid.is-uncropped img { height: 360px; object-fit: contain; background: var(--cream); }
/* Full, uncropped poster showcase — object-fit:contain so no text gets cut off */
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.poster-grid figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream); }
.poster-grid img { width: 100%; height: 420px; object-fit: contain; display: block; background: var(--cream); }
.poster-grid figcaption { padding: 10px 14px; font-size: 0.82rem; color: var(--gray); background: var(--white); text-align: center; }
.pkg-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-list .card h3 { font-size: 1.05rem; }
.map-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 20px;
}
.map-link-card svg { width: 26px; height: 26px; color: var(--teal-dark); flex-shrink: 0; }
.map-link-card a { font-weight: 700; color: var(--teal-dark); text-decoration: underline; }

/* Careers */
.job-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.job-card-head {
  background: var(--teal-dark);
  color: var(--white);
  padding: 36px 40px;
}
.job-card-head .eyebrow { color: #E3B27E; }
.job-card-head h2 { color: var(--white); margin-bottom: 6px; }
.job-meta-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 16px; font-size: 0.9rem; }
.job-meta-row span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
.job-meta-row svg { width: 16px; height: 16px; }
.job-card-body { padding: 36px 40px; }
.req-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.98rem; color: var(--ink); }
.req-list li .emoji { flex-shrink: 0; }
.deadline-note {
  background: #FBE7E4;
  color: #A33A2C;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 18px;
  display: inline-block;
  margin: 20px 0;
}
.no-jobs-note { text-align: center; color: var(--gray); }

/* Resources / blog */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img { width: 100%; height: 190px; object-fit: cover; }
.article-card-body { padding: 22px 24px 26px; }
.article-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--brown); margin-bottom: 8px; display: block; }
.article-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.article-card p { font-size: 0.9rem; margin-bottom: 0; }
.article-read { font-weight: 700; color: var(--teal-dark); font-size: 0.88rem; display: inline-block; margin-top: 14px; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 1.6em; }
.article-body img { border-radius: var(--radius); margin: 20px 0; box-shadow: var(--shadow-sm); }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 1.2em; }
.article-body li { color: var(--gray); margin-bottom: 8px; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 36px; box-shadow: var(--shadow); }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--gray-light); font-size: 0.86rem; margin-bottom: 28px; }
.kr-table-wrap { overflow-x: auto; margin: 24px 0; }
table.kr-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 640px; }
table.kr-table th, table.kr-table td { border: 1px solid var(--sand); padding: 10px 12px; text-align: left; vertical-align: top; }
table.kr-table th { background: var(--teal-dark); color: var(--white); font-weight: 700; }
table.kr-table tr:nth-child(even) { background: var(--cream); }

/* Photo gallery */
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.gallery-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--sand);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-dark);
  background: var(--white);
}
.drive-embed-wrap {
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.drive-embed-wrap iframe { width: 100%; height: 640px; border: 0; display: block; }
.gallery-note { max-width: 640px; margin: 0 auto 30px; text-align: center; }

/* Customers */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: 30px 32px;
  position: relative;
}
.testimonial-card .quote-mark { font-family: var(--font-head); font-size: 3rem; color: var(--teal-pale); line-height: 1; margin-bottom: 4px; }
.testimonial-card p.quote { color: var(--ink); font-size: 1.02rem; font-style: italic; }
.testimonial-source { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 0.86rem; color: var(--gray-light); font-weight: 600; }
.testimonial-source svg { width: 16px; height: 16px; color: #25D366; }

/* Social icon row */
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: rgba(255,255,255,0.24); }
.social-row svg { width: 18px; height: 18px; color: var(--white); }
.footer-col .social-row { margin-top: 6px; }

/* Two-office grid reuse of market-grid; office extras */
.office-reg { font-size: 0.78rem; color: var(--gray-light); margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--sand); }

/* Alliances strip */
.alliance-strip img { max-width: 100%; border-radius: 10px; }

/* Breadcrumb small link back */
.back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--teal-dark); font-size: 0.9rem; margin-bottom: 20px; }

/* WhatsApp floating widget */
.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: transform 0.2s ease;
}
.whatsapp-widget:hover { transform: scale(1.08); }
.whatsapp-widget svg { width: 30px; height: 30px; }
@media (max-width: 720px) {
  .whatsapp-widget { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-widget svg { width: 26px; height: 26px; }
}

/* Responsive for new components */
@media (max-width: 980px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .coffee-grid { grid-template-columns: 1fr; }
  .poster-band { grid-template-columns: 1fr; }
  .service-photo-grid { grid-template-columns: 1fr 1fr; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .pkg-list { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 22px 12px; }
  .service-photo-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; }
  .poster-grid img { height: 320px; }
  .pkg-list { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .job-card-head, .job-card-body { padding: 28px 22px; }
  .drive-embed-wrap iframe { height: 480px; }
  .logo-chip { width: 130px; height: 70px; padding: 10px 14px; }
}

/* ==========================================================================
   Site Expansion — Photo Sliders, Leadership Org Chart, Partner Logo Grid,
   Value Chain Diagram, Tree Tables, Pillars Grid, Video, Social Embeds,
   Reviews, Illustrations
   ========================================================================== */

.stat-sub { display: block; font-weight: 400; font-size: 0.72rem; color: var(--gray-light); margin-top: 3px; }

/* Photo slider (used on Home + Our Farm) — compact slide bar, not a full-width gallery */
.photo-slider { position: relative; display: flex; align-items: center; gap: 10px; max-width: 100%; }
.slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
}
.slider-track::-webkit-scrollbar { height: 6px; }
.slider-track::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 8px; }
.slider-slide {
  flex: 0 0 auto;
  width: 220px;
  height: 155px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
}
.slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-btn {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover { background: var(--teal-dark); color: var(--white); }

/* Leadership org chart */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.org-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; }
.org-node {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.org-node--lead {
  background: var(--teal-dark);
  color: var(--white);
  padding: 18px 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.org-node--lead .org-role { font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; color: #E3B27E; }
.org-node--lead .org-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.org-node--sub { font-weight: 500; font-size: 0.85rem; color: var(--gray); }
.org-row::before { content: none; }
.org-row--top { margin-bottom: -4px; }

/* Governance boards row (advisory boards above the MD) */
.org-boards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.org-board { background: var(--cream); border: 1px solid var(--sand); border-radius: 12px; padding: 16px 18px; text-align: center; }
.org-board-title { font-weight: 700; color: var(--teal-dark); font-size: 0.92rem; }
.org-board-desc { font-size: 0.78rem; color: var(--gray-light); margin-top: 3px; }
.org-board-name { font-size: 0.82rem; color: var(--brown); font-weight: 700; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--sand); }
.org-advise-label { font-size: 0.72rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.8px; text-align: center; }

/* Department grid (manager + unit leads, under the MD) */
.org-dept-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 10px; margin-top: 4px; }
.org-dept { display: flex; flex-direction: column; gap: 6px; }
.org-dept-head { background: var(--teal-pale); color: var(--teal-dark); font-weight: 700; font-size: 0.78rem; text-align: center; padding: 10px 6px; border-radius: 10px; line-height: 1.25; }
.org-dept-unit { background: var(--white); border: 1px solid var(--sand); border-radius: 8px; padding: 7px 6px; font-size: 0.72rem; color: var(--gray); text-align: center; line-height: 1.25; }

/* Partner logo grid (individual chips, larger than logo-strip) */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-grid-chip {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.logo-grid-chip img { max-height: 60px; max-width: 100%; object-fit: contain; }

/* Value chain flow diagram */
.value-chain-flow { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 0; padding: 8px 2px 18px; }
.vc-step {
  flex: 0 0 150px;
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.vc-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  margin: 0 auto 12px;
}
.vc-step.is-kakone .vc-step-num { background: var(--brown); }
.vc-step-label { font-weight: 700; color: var(--teal-dark); font-size: 0.92rem; margin-bottom: 4px; }
.vc-step-desc { font-size: 0.8rem; color: var(--gray-light); }
.vc-arrow { flex: 0 0 24px; display: flex; align-items: center; justify-content: center; color: var(--sand); font-size: 1.3rem; padding-top: 10px; }
.quote-block {
  background: var(--teal-dark);
  border-radius: var(--radius);
  padding: 40px 44px;
  text-align: center;
  margin: 32px 0;
}
.quote-block p { color: var(--white); font-family: var(--font-head); font-size: 1.3rem; font-style: italic; margin-bottom: 10px; line-height: 1.4; }
.quote-block cite { color: #E3B27E; font-style: normal; font-weight: 600; font-size: 0.92rem; }

/* Four Pillars (Social / Environment / Economy / Governance) */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { background: var(--cream); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.pillar-card .pillar-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pillar-card h3 { font-size: 1rem; margin-bottom: 6px; }
.pillar-card p { font-size: 0.85rem; margin: 0; }

/* Tree recommendation tables */
.tree-table-wrap { overflow-x: auto; margin: 20px 0; }
.tree-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tree-table th { background: var(--teal-dark); color: var(--white); text-align: left; padding: 10px 14px; font-weight: 600; }
.tree-table td { padding: 10px 14px; border-bottom: 1px solid var(--sand); vertical-align: top; color: var(--gray); }
.tree-table tr.is-good td:first-child { color: #1F6B33; font-weight: 700; }
.tree-table tr.is-bad td:first-child { color: #A33A2C; font-weight: 700; }

/* Illustration figure caption */
.illustration-figure { text-align: center; margin: 24px 0; }
.illustration-figure img { max-width: 380px; margin: 0 auto; }
.illustration-figure figcaption { font-size: 0.82rem; color: var(--gray-light); margin-top: 8px; }

/* Video embed (Our Farm aerial footage) */
.video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--teal-dark); }
.video-wrap video, .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); gap: 10px; text-align: center; padding: 20px; }
.video-placeholder svg { width: 52px; height: 52px; }

/* Social follow embeds */
.social-embed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.social-embed-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 18px; text-align: center; overflow: hidden; }
.social-embed-card h3 { font-size: 0.95rem; margin-bottom: 12px; }
.linkedin-follow-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0A66C2; color: var(--white); font-weight: 700;
  padding: 10px 18px; border-radius: 8px; font-size: 0.88rem;
  flex-shrink: 0;
}
.linkedin-follow-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Reviews / testimonials submission + auto-list */
.review-form-card { background: var(--cream); border-radius: var(--radius); padding: 32px; }
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.review-list.is-loading, .review-list.is-empty { display: block; text-align: center; color: var(--gray-light); padding: 20px 0; }
.star-row { color: #D9A441; font-size: 0.95rem; margin-bottom: 8px; letter-spacing: 2px; }

@media (max-width: 980px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .social-embed-grid { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .org-boards { grid-template-columns: 1fr; }
  .org-dept-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .org-node--lead { padding: 14px 24px; }
  .slider-slide { width: 68vw; max-width: 260px; height: 170px; }
  .quote-block { padding: 28px 22px; }
  .quote-block p { font-size: 1.08rem; }
  .org-dept-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Chat assistant widget */
.chat-widget-toggle {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 201;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--teal-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.chat-widget-toggle:hover { transform: scale(1.08); }
.chat-widget-toggle svg { width: 26px; height: 26px; }
.chat-widget-toggle .icon-close { display: none; }
.chat-widget-toggle.is-open .icon-chat { display: none; }
.chat-widget-toggle.is-open .icon-close { display: block; }

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 160px;
  z-index: 201;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 200px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sand);
}
.chat-panel[hidden] { display: none; }
.chat-panel-head {
  background: var(--teal-dark);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.chat-panel-head strong { display: block; font-size: 0.98rem; }
.chat-panel-head span { display: block; font-size: 0.74rem; opacity: 0.82; margin-top: 2px; }
.chat-panel-close {
  background: none; border: none; color: #fff; font-size: 1.4rem;
  line-height: 1; cursor: pointer; padding: 0 2px; flex-shrink: 0;
}
.chat-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream);
}
.chat-msg { max-width: 88%; padding: 10px 13px; border-radius: 12px; font-size: 0.88rem; line-height: 1.45; }
.chat-msg p { margin: 0; }
.chat-msg p + p { margin-top: 6px; }
.chat-msg--bot { background: #fff; border: 1px solid var(--sand); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg--user { background: var(--teal-dark); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-msg--error { background: #FBEAEA; border: 1px solid #E8B4B4; color: #8A2E2E; align-self: flex-start; }
.chat-msg--typing { display: inline-flex; gap: 4px; align-items: center; }
.chat-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-light); animation: chatTyping 1.1s infinite ease-in-out; }
.chat-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTyping { 0%, 60%, 100% { opacity: 0.35; } 30% { opacity: 1; } }
.chat-panel-form {
  display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--sand); background: #fff;
}
.chat-panel-form input {
  flex: 1; border: 1px solid var(--sand); border-radius: 10px; padding: 10px 12px; font-size: 0.88rem; font-family: inherit;
}
.chat-panel-form input:focus { outline: 2px solid var(--teal-dark); outline-offset: 1px; }
.chat-panel-form button {
  width: 40px; height: 40px; border-radius: 10px; border: none; background: var(--teal-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.chat-panel-form button svg { width: 18px; height: 18px; }
.chat-panel-form button:disabled { opacity: 0.5; cursor: default; }
.chat-panel-note { font-size: 0.68rem; color: var(--gray-light); text-align: center; padding: 6px 10px 10px; background: #fff; margin: 0; }
.chat-panel-note a { color: var(--teal-dark); }

@media (max-width: 720px) {
  .chat-widget-toggle { right: 16px; bottom: 82px; width: 52px; height: 52px; }
  .chat-panel { right: 12px; bottom: 144px; width: calc(100vw - 24px); height: calc(100vh - 220px); }
}

/* "Ask our assistant" prompts — Resources hub band + inline article prompt */
.ask-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 32px 36px;
}
.ask-band h2 { margin: 4px 0 10px; }
.ask-band p { margin: 0; color: var(--gray); }
.ask-band .btn { flex-shrink: 0; }
.ask-inline-prompt {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--cream); border-radius: var(--radius); padding: 18px 22px;
}
.ask-inline-prompt p { margin: 0; font-weight: 600; color: var(--teal-dark); }
.ask-inline-prompt .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 720px) {
  .ask-band, .ask-inline-prompt { flex-direction: column; align-items: flex-start; text-align: left; }
  .ask-band { padding: 24px; }
}
