/* ============================================================
   JOLINI ROASTERS — Design System (Terracotta Craft · Montserrat)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --bone:        #F0E9DC;
  --bone-2:      #FBF7F2;
  --cocoa:       #2D1B12;
  --cocoa-2:     #1A0D07;
  --terra:       #B5522E;
  --khaki:       #9CA874;
  --sand:        #E8C9A0;
  --stone:       #8A6B56;

  --bg:          var(--bone);
  --bg-light:    var(--bone-2);
  --bg-dark:     var(--cocoa);
  --text:        var(--cocoa);
  --text-muted:  #5C3D2A;
  --accent:      var(--terra);
  --accent-2:    var(--khaki);
  --border:      rgba(45,27,18,0.14);
  --border-dark: rgba(45,27,18,0.75);

  --font:        'Montserrat', sans-serif;

  --radius:      0px;
  --transition:  0.25s ease;
  --container:   1400px;
  --gap:         clamp(1rem, 3vw, 2rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
textarea, input { font-family: var(--font); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 48px);
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 9vw, 100px); }
h2 { font-size: clamp(2rem, 5.5vw, 68px); }
h3 { font-size: clamp(1.1rem, 2.5vw, 28px); }
p { color: var(--text-muted); max-width: 60ch; }
.lead { font-size: 18px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }
.label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
  display: block;
}
.section-title { margin-bottom: 0.5rem; }
.section-intro { margin-bottom: 3rem; font-weight: 300; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px 30px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--cocoa); color: var(--bone-2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,27,18,0.2); }

.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(181,82,46,0.3); }

.btn-outline { border: 1px solid var(--border-dark); color: var(--text); background: transparent; }
.btn-outline:hover { transform: translateY(-2px); background: rgba(45,27,18,0.04); }

.btn-outline-light { border: 1px solid rgba(251,247,242,0.4); color: var(--bone-2); background: transparent; }
.btn-outline-light:hover { background: rgba(251,247,242,0.08); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ---- Tag ---- */
.tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border-dark);
  color: var(--text);
}
.tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.tags-row .tag { border-color: var(--border); background: rgba(45,27,18,0.04); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  padding: 1rem 0;
  background: rgba(240,233,220,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease;
}
.site-header.hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo svg { height: 26px; width: auto; fill: var(--cocoa); }
.header-logo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cocoa);
}
.header-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.header-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--terra); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  overflow: hidden;
}
.lang-toggle a {
  padding: 0.3rem 0.7rem;
  font-size: 11px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: all var(--transition);
}
.lang-toggle a.active { background: var(--cocoa); color: var(--bone-2); }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cocoa); transition: all var(--transition); }

/* Mobile nav */
@media (max-width: 960px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bone-2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    z-index: 109;
  }
  .header-nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .lang-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--bone-2);
}
.hero .container { position: relative; z-index: 2; }

/* Gradient blobs */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-gradient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  will-change: transform;
}
.hero-gradient .blob-1 {
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, #E8C9A0 0%, transparent 70%);
  top: -15%; right: -10%;
  animation: drift1 8s ease-in-out infinite;
}
.hero-gradient .blob-2 {
  width: 50vw; height: 50vw;
  max-width: 650px; max-height: 650px;
  background: radial-gradient(circle, #F0E9DC 0%, transparent 70%);
  bottom: -20%; left: -5%;
  animation: drift2 10s ease-in-out infinite;
}
.hero-gradient .blob-3 {
  width: 35vw; height: 35vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, #E0D0B8 0%, transparent 70%);
  top: 30%; left: 30%;
  animation: drift3 7s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(-6vw, 5vh) scale(1.08); }
  50%      { transform: translate(3vw, -4vh) scale(0.95); }
  75%      { transform: translate(-2vw, -3vh) scale(1.04); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(5vw, -4vh) scale(1.06); }
  50%      { transform: translate(-4vw, 6vh) scale(0.96); }
  75%      { transform: translate(3vw, 2vh) scale(1.02); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(5vw, 4vh) scale(1.1); }
  50%      { transform: translate(-5vw, -2vh) scale(0.93); }
  75%      { transform: translate(-2vw, 5vh) scale(1.05); }
}

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}
.hero h1 { margin: 0 0 1.25rem; }
.hero h1 span { color: var(--terra); }
.hero-sub { font-size: 17px; font-weight: 300; color: var(--text-muted); max-width: 460px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
@media (max-width: 768px) {
  .hero-gradient .blob-1 {
    width: 120vw; height: 120vw;
    top: -10%; right: -30%;
  }
  .hero-gradient .blob-2 {
    width: 100vw; height: 100vw;
    bottom: -10%; left: -20%;
  }
  .hero-gradient .blob-3 {
    width: 80vw; height: 80vw;
    top: 20%; left: 10%;
  }
  .hero-gradient span { opacity: 0.7; filter: blur(80px); }
}
@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-strip { display: none; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(251,247,242,0.1);
}
.stat-box {
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(251,247,242,0.1);
}
.stat-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sand);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-value sup { font-size: 50%; vertical-align: super; }
.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(251,247,242,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box { padding: 1.25rem 0; border-right: none; border-bottom: 1px solid rgba(251,247,242,0.1); }
  .stat-box:nth-child(odd) { border-right: 1px solid rgba(251,247,242,0.1); padding-right: 1rem; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 9rem) 0; border-bottom: 1px solid var(--border); }
.section:last-of-type { border-bottom: none; }
.section-alt { background: var(--bone-2); }
.section-dark { background: var(--cocoa); color: var(--bone-2); }
.section-dark p { color: rgba(251,247,242,0.65); }
.section-dark .section-title,
.section-dark h2,
.section-dark h3 { color: var(--bone-2); }
.section-dark .label { color: var(--sand); }

/* ---- Divider ---- */
.section-divider {
  background: var(--terra);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  text-align: center;
  border-bottom: none;
}
.section-divider .label { color: rgba(251,247,242,0.6); margin-bottom: 1rem; }
.section-divider h2 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 3.5rem); max-width: 20ch; margin: 0 auto; }
.section-divider p { color: rgba(251,247,242,0.8); margin: 1rem auto 0; max-width: 55ch; text-align: center; }

/* ============================================================
   LOTS — 3-column compact horizontal cards
   ============================================================ */
.lots-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .lots-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lots-grid { grid-template-columns: 1fr; } }

.lots-cta {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
  padding: 18px;
}

.lot-card {
  display: flex;
  background: var(--bone);
  cursor: pointer;
  transition: background 0.2s ease;
  border: 1px solid var(--border-dark);
}
.lot-card:hover { background: var(--bone-2); }

.lot-content {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.lot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: auto;
}
.lot-name {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}
.lot-sca {
  font-size: 13px;
  font-weight: 700;
  color: var(--terra);
  white-space: nowrap;
  flex-shrink: 0;
}
.lot-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.lot-flavor {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow: hidden;
}
.lot-flavor-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--stone);
  border: 1px solid var(--border-dark);
  padding: 2px 7px;
  white-space: nowrap;
}
.lot-badge-f {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  background: var(--terra);
  color: #fff;
  margin-top: 4px;
  align-self: flex-start;
}
@media (max-width: 540px) {
  .lot-content { padding: 14px 16px; }
}

/* ============================================================
   ROAST FOR BUSINESS — Timeline + Accordion
   ============================================================ */

.tl-wrap {
  display: flex;
  flex-direction: column;
}

/* ---- Each step: marker left + panel right ---- */
.tl-step {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

/* ---- Timeline marker column ---- */
.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--stone);
  background: var(--bone);
  flex-shrink: 0;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

/* Active dot */
.tl-step.active .tl-dot {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

/* Connecting line — fills remaining height of step */
.tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  min-height: 16px;
}

/* No line on last step */
.tl-step-last .tl-line { display: none; }

/* ---- Accordion panel ---- */
.tl-panel {
  flex: 1;
  min-width: 0;
  border-bottom: 1px solid var(--border);
}
.tl-step:first-child .tl-panel { border-top: 1px solid var(--border); }
.tl-step-last .tl-panel { border-bottom: 1px solid var(--border); }

/* Header button */
.tl-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: 40px;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
}

.tl-head-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tl-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s ease;
}
.tl-step.active .tl-step-label { color: var(--terra); }

.tl-title {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}

/* Toggle icon — rotates on open */
.tl-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s ease;
}
.tl-icon::before,
.tl-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--stone);
  transition: transform 0.35s ease, opacity 0.2s ease;
}
/* Horizontal bar */
.tl-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
/* Vertical bar — hides when open */
.tl-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.tl-step.active .tl-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* ---- Accordion body — smooth height animation via grid ---- */
.tl-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.tl-step.active .tl-body-wrap {
  grid-template-rows: 1fr;
}

.tl-body {
  overflow: hidden;
}

.tl-body p {
  padding: 0.5rem 0 1.5rem;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ---- Two-column layout: accordion left, CTA right ---- */
.tl-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

/* ---- CTA side panel ---- */
.tl-cta {
  padding: 1.25rem;
  background: transparent;
  border: 2px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.tl-cta h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.tl-cta p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ---- Form ---- */
.tl-cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tl-contact-row {
  display: flex;
  gap: 0.5rem;
}
.tl-form-select {
  width: auto;
  min-width: 110px;
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: rgba(45,27,18,0.04);
  border: 1px solid var(--border-dark);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.tl-form-select:focus { border-color: var(--terra); }

.tl-form-input,
.tl-form-textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: rgba(45,27,18,0.04);
  border: 1px solid var(--border-dark);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tl-form-input::placeholder,
.tl-form-textarea::placeholder {
  color: var(--stone);
}
.tl-form-input:focus,
.tl-form-textarea:focus {
  border-color: var(--terra);
  background: rgba(45,27,18,0.06);
}

.tl-form-textarea {
  resize: none;
  overflow-y: auto;
  min-height: 144px;
}
@media (max-width: 860px) {
  .tl-form-textarea { min-height: 72px; }
}

.tl-cta-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.tl-cta-form .btn:hover {
  background: var(--cocoa);
  border-color: var(--cocoa);
}

/* ---- Mobile ---- */
@media (max-width: 860px) {
  .tl-layout {
    grid-template-columns: 1fr;
  }
  .tl-cta {
    gap: 1.5rem;
  }
}
@media (max-width: 540px) {
  .tl-marker { width: 32px; }
  .tl-dot { width: 32px; height: 32px; font-size: 11px; }
  .tl-title { font-size: 1rem; }
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.about-left {
  display: flex;
  flex-direction: column;
  padding-right: clamp(1.5rem, 3vw, 2.5rem);
}
.about-spacer { flex: 1; min-height: 3rem; }

.about-mission-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(251,247,242,0.85);
  max-width: none;
  font-style: italic;
}
.values-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.values-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(251,247,242,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(251,247,242,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.values-list li::before {
  content: '—';
  color: var(--terra);
  font-weight: 900;
  flex-shrink: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-right .lead {
  color: rgba(251,247,242,0.85);
  font-style: italic;
}
.about-right p {
  color: rgba(251,247,242,0.65);
  font-weight: 300;
  font-size: 15px;
  max-width: none;
}
.about-flags {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.about-flag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}
.about-flag-item .flag { font-size: 1.25rem; }
/* Desktop: CTA in right column visible, bottom CTA hidden */
.about-cta-mobile { display: inline-flex; justify-content: center; margin-top: auto; }
.about-cta-bottom { display: none; }

@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; }
  .about-spacer { min-height: 2rem; }
  .about-left { order: 2; padding-right: 0; }
  .about-right { order: 1; }
  /* Mobile: hide right-col CTA, show bottom CTA after values */
  .about-cta-mobile { display: none; }
  .about-cta-bottom { display: flex; justify-content: center; width: 100%; margin-top: 1.5rem; }
  .about-flag-item { font-size: clamp(9px, 3vw, 13px); letter-spacing: 0.08em; gap: 0.4rem; }
  .about-flag-item .flag { font-size: clamp(0.9rem, 4vw, 1.35rem); }
  .about-flags { gap: clamp(0.5rem, 2.5vw, 1rem); flex-wrap: nowrap; overflow: hidden; }
}

/* ============================================================
   SOURCING STANDARDS — Horizontal tiles
   ============================================================ */
.sourcing-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}

/* Top text row */
.sourcing-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 2.5rem;
}
.sourcing-head h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.sourcing-head p   { font-size: 15px; font-weight: 300; line-height: 1.75; max-width: none; }

/* Five-column tile grid */
.cert-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cert-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  text-align: center;
  min-height: 180px;
}
.cert-tile-f { background: var(--terra);      color: #fff; }
.cert-tile-o { background: var(--khaki);      color: #fff; }
.cert-tile-r { background: #5B7040;           color: #fff; }
.cert-tile-c { background: var(--sand);       color: var(--cocoa); }
.cert-tile-b { background: var(--cocoa);      color: var(--bone-2); }

.cert-tile-letter {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.cert-tile-name {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .sourcing-head { grid-template-columns: 1fr; }
  .cert-tiles   { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (max-width: 480px) {
  .cert-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--bone-2);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--sand); }
.service-icon { font-size: 1.5rem; }
.service-card h3 { font-size: 14px; line-height: 1.3; }
.service-card p { font-size: 13px; font-weight: 300; color: var(--text-muted); max-width: none; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CALCULATOR — full width
   ============================================================ */
/* ── Outer wrapper ── */
.calc-layout {
  border: 1px solid var(--border);
  background: var(--bone-2);
  display: flex;
  flex-direction: column;
}

/* ── Two-column steps grid ── */
.calc-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.calc-col {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.calc-col-right {
  border-left: 1px solid var(--border);
}

/* Steps */
.calc-step { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.calc-step-last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.calc-step-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.calc-step-num {
  width: 1.75rem; height: 1.75rem;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
  color: var(--terra);
  flex-shrink: 0;
}
.calc-step-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* Controls */
.tab-group { display: inline-flex; border: 1px solid var(--border-dark); }
.tab-btn { padding: 0.55rem 1rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.tab-btn.active { background: var(--cocoa); color: var(--bone-2); }
.tier-cards { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
.tier-card {
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 1rem;
  align-items: start;
}
.tier-card.selected { background: var(--sand); border-color: var(--terra); }
.tier-info { display: contents; }
.tier-name { grid-column: 1; grid-row: 1; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.tier-ex { grid-column: 1 / -1; grid-row: 2; font-size: 12px; color: var(--stone); font-weight: 300; }
.tier-price { grid-column: 2; grid-row: 1; font-size: 16px; font-weight: 700; color: var(--terra); line-height: 1; justify-self: end; }
.volume-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.volume-input {
  border: 1px solid var(--border-dark);
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  width: 110px;
  background: transparent;
  color: var(--text);
  outline: none;
}
.volume-input:focus { border-color: var(--terra); }
.volume-hint { font-size: 11px; font-weight: 400; color: var(--stone); }
.pkg-options { display: flex; flex-direction: column; }
.pkg-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.pkg-opt:last-child { border-bottom: none; }
.pkg-opt input[type="radio"] { margin-top: 3px; accent-color: var(--terra); flex-shrink: 0; }
.pkg-opt span { font-size: 13px; font-weight: 500; }
.pkg-sub { display: block; font-size: 11px; color: var(--stone); margin-top: 2px; font-weight: 300; }
.blend-slider-wrap { margin-top: 0.75rem; }
.blend-slider-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--stone); margin-bottom: 0.4rem; }
#blendSlider { width: 100%; accent-color: var(--terra); }

/* ── Full-width dark result bar ── */
.calc-result-bar {
  background: var(--cocoa);
  border-top: 1px solid rgba(251,247,242,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.calc-result-left {
  display: flex;
  flex-direction: column;
}
.calc-result-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  height: 100%;
  padding-left: 0;
}
.result-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,247,242,0.4); margin-bottom: 0.35rem; }
.result-total { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--sand); line-height: 1; }
.result-per-kg { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: rgba(251,247,242,0.7); line-height: 1; }
.result-disclaimer { font-size: 14px; color: rgba(251,247,242,0.45); font-weight: 300; line-height: 1.6; max-width: none; }
.calc-result-right .btn { width: 100%; text-align: center; box-sizing: border-box; }

/* Mobile */
@media (max-width: 860px) {
  .calc-steps-grid { grid-template-columns: 1fr; }
  .calc-col-right { border-left: none; border-top: 1px solid var(--border); }
  .calc-result-bar { grid-template-columns: 1fr; }
}


/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.contacts-header h2 { margin: 1rem 0 1.25rem; }
.contacts-header p { margin: 0 auto; max-width: 52ch; text-align: center; font-weight: 300; }

.contacts-shared-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.contacts-shared-btns .btn { flex: 1; min-width: 200px; text-align: center; }
@media (max-width: 600px) {
  .contacts-shared-btns { flex-direction: column; }
  .contacts-shared-btns .btn { width: 100%; flex: none; }
}
.office-col {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.office-col:first-child { border-right: 1px solid var(--border); }
.office-flag {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.office-country {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}
.office-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.office-detail-row {
  display: flex;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.office-detail-row:last-child { border-bottom: none; }
.office-detail-row label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  min-width: 64px;
  flex-shrink: 0;
}
.office-detail-row span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}

.contacts-office {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contacts-office-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.25rem;
}
.contacts-office-flag .flag { font-size: 1.25rem; }
.contacts-office-name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(251,247,242,0.85);
  margin: 0;
}
.contacts-office-addr {
  font-size: 14px;
  font-weight: 300;
  color: rgba(251,247,242,0.5);
  margin: 0;
  line-height: 1.4;
}
.contacts-office-phone {
  font-size: 15px;
  font-weight: 500;
  color: rgba(251,247,242,0.85);
  text-decoration: none;
  margin-top: 0.15rem;
}
.contacts-office-phone:hover { color: var(--terra); }

/* -- Contacts mobile header (hidden on desktop) -- */
.contacts-mobile-header { display: none; }
.contacts-mobile-header h3 { font-size: clamp(1rem, 2vw, 1.4rem); margin-top: 0.5rem; }
.contacts-mobile-header p { font-size: 14px; font-weight: 300; }

/* -- Contacts two-column wrap -- */
#contacts { background: var(--cocoa-2); border-bottom: none; }
.contacts-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.contacts-col {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts-col-offices { padding-right: clamp(1.5rem, 3.5vw, 3rem); }
.contacts-col-cta { padding-left: clamp(1.5rem, 3.5vw, 3rem); }
.contacts-col-offices {
  border-right: 1px solid rgba(251,247,242,0.1);
}
.contacts-col-offices .contacts-office + .contacts-office {
  border-top: 1px solid rgba(251,247,242,0.1);
  padding-top: 1.25rem;
}
.contacts-col-cta {
  justify-content: space-between;
  gap: 0.6rem;
}
.contacts-col-cta h3 { font-size: clamp(1rem, 2vw, 1.4rem); margin: 0; }
.contacts-col-cta p { font-size: 14px; font-weight: 300; max-width: none; margin: 0; }
.contacts-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}
.contacts-cta-btns .btn { width: 100%; text-align: center; box-sizing: border-box; }
.contacts-cta-btns .btn-outline { border-color: rgba(251,247,242,0.3); color: var(--bone-2); }
.contacts-cta-btns .btn-outline:hover { background: rgba(251,247,242,0.08); }

@media (max-width: 700px) {
  .contacts-mobile-header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
  .contacts-wrap { grid-template-columns: 1fr; }
  .contacts-col-offices { border-right: none; border-bottom: none; padding-right: 0; padding-bottom: 0; }
  .contacts-col-cta { padding-left: 0; padding-top: 1.5rem; }
  .contacts-col-cta > .label,
  .contacts-col-cta > h3,
  .contacts-col-cta > p { display: none; }
  .contacts-cta-btns { flex-direction: column; margin-top: 0; }
  .contacts-cta-btns .btn { width: 100%; }
}


/* ============================================================
   SUBSCRIBE
   ============================================================ */
.sub-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.sub-form { display: flex; margin-top: 2rem; }
.sub-input {
  flex: 1;
  border: 1px solid rgba(251,247,242,0.25);
  padding: 1rem 1.25rem;
  background: rgba(251,247,242,0.06);
  color: var(--bone-2);
  font-size: 13px;
  outline: none;
}
.sub-input::placeholder { color: rgba(251,247,242,0.3); }
.sub-input:focus { border-color: var(--sand); }
.sub-note { font-size: 11px; color: rgba(251,247,242,0.3); margin-top: 1rem; font-weight: 300; }
@media (max-width: 600px) {
  .sub-form { flex-direction: column; gap: 0.75rem; }
  .sub-input { width: 100%; }
  .sub-form .btn { width: 100%; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cocoa-2, #1A0D07); color: var(--bone-2); padding: 4rem 0 2.5rem; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251,247,242,0.08);
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo svg { height: 22px; width: auto; fill: var(--sand); }
.footer-logo-name { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(251,247,242,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--sand); }
@media (max-width: 540px) {
  .site-footer { padding: 2rem 0 1.5rem; }
  .footer-inner { gap: 1rem; padding-bottom: 1.5rem; }
  .footer-links { gap: 1rem; flex-wrap: nowrap; }
  .footer-links a { font-size: 8px; letter-spacing: 0.06em; }
}
.footer-bottom-note { font-size: 11px; color: rgba(251,247,242,0.35); font-weight: 400; letter-spacing: 0.05em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 11px; font-weight: 300; color: rgba(251,247,242,0.25); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(240,233,220,0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bone-2);
  border: 1px solid var(--border-dark);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.modal-header-left { display: flex; flex-direction: column; gap: 0.3rem; }
.modal-title { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.modal-origin { font-size: 12px; color: var(--stone); font-weight: 300; }
.modal-sca-badge { font-size: 13px; font-weight: 700; color: var(--terra); }
.modal-close { background: none; border: none; color: var(--stone); font-size: 1.75rem; line-height: 1; cursor: pointer; flex-shrink: 0; }
.modal-close:hover { color: var(--cocoa); }
.modal-body { padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.modal-img {
  width: 100%;
  aspect-ratio: 16/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45,27,18,0.25);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-notes { font-style: italic; color: var(--text-muted); font-size: 14px; font-weight: 300; line-height: 1.7; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-tags .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--stone);
  border: 1px solid var(--border-dark);
  padding: 2px 7px;
  white-space: nowrap;
}
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.modal-field {
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.modal-field:nth-child(even) { border-right: none; }
.modal-field:last-child { border-bottom: none; }
.modal-field-full { grid-column: 1 / -1; border-right: none; }
.modal-field label { display: block; font-size: 9px; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.3rem; }
.modal-field p { color: var(--text); font-size: 13px; max-width: none; font-weight: 500; }

/* ============================================================
   MOBILE WA FAB
   ============================================================ */
.wa-mobile-fab {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-mobile-fab:hover { transform: scale(1.08); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
@media (max-width: 768px) {
  .wa-mobile-fab { display: flex; }
}

/* ============================================================
   PRODUCTS BLOCK (stays on page, not in nav)
   ============================================================ */
#products { border-bottom: none; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.product-card {
  background: var(--bone-2);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.product-card:hover { background: var(--sand); }
.product-icon { font-size: 1.4rem; }
.product-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.product-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); max-width: none; line-height: 1.65; }
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }
