/* ============================================================
   VBFA NORTH LOGAN, LLC — small-batch coffee roastery motif
   Palette (solid hex only, no rgba, no gradients on text)
   ============================================================ */

:root {
  --roast-dark: #251B15;
  --bean-cream: #F6EFD9;
  --cardamom-tin: #7A9A64;
  --sack-burlap: #8C7A54;
  --well-deep: #16100C;
  --patch-leather: #5C4632;
  --log-paper: #EFE7D2;
  --ink-dark: #251B15;

  --tray-cinnamon: #A9713E;
  --tray-med: #8A5A34;
  --tray-city: #6E4526;
  --tray-full: #55331D;
  --tray-french: #3C2312;
  --tray-italian: #291709;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  background-color: #251B15;
  color: #F6EFD9;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  line-height: 1.2;
  margin: 0 0 14px 0;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.35rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 16px 0; }

a { color: #7A9A64; }

a:hover,
a:focus { color: #F6EFD9; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background-color: #7A9A64;
  color: #16100C;
  padding: 10px 16px;
  z-index: 200;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ============================================================
   SACK PATCH HEADER — burlap band with five stitched patches
   ============================================================ */

.sackpatch {
  position: sticky;
  top: 0;
  z-index: 120;
  background-color: #8C7A54;
  border-bottom: 6px solid #5C4632;
  box-shadow: inset 0 -10px 0 0 #7d6c49;
}

.sackpatch-woven {
  height: 10px;
  background-color: #7d6c49;
  background-image:
    linear-gradient(90deg, #8C7A54 0 6px, #6E5E3E 6px 8px, #8C7A54 8px 14px);
  background-size: 14px 10px;
}

.sackpatch-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.sackpatch-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F6EFD9;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-right: auto;
}

.bean-glyph {
  width: 16px;
  height: 22px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background-color: #7A9A64;
  border: 2px solid #16100C;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.bean-glyph::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background-color: #16100C;
  border-radius: 2px;
}

.sackpatch-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.patch {
  position: relative;
  display: block;
}

.patch a {
  display: block;
  background-color: #EFE7D2;
  color: #251B15;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 16px 9px 16px;
  border: 2px solid #5C4632;
  letter-spacing: 0.03em;
}

.patch a:hover,
.patch a:focus {
  background-color: #F6EFD9;
  color: #16100C;
}

.patch::before,
.patch::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #5C4632;
  border-radius: 3px;
  z-index: 2;
}

.patch::before { top: 3px; left: 3px; }
.patch::after { bottom: 3px; right: 3px; }

.patch-topline {
  position: absolute;
  top: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: #5C4632;
  z-index: 2;
}

.patch.patch-tilt-a a { transform: rotate(-1.2deg); }
.patch.patch-tilt-b a { transform: rotate(0.9deg); }
.patch.patch-tilt-c a { transform: rotate(-0.6deg); }

.patch.patch-tall a { padding-top: 14px; padding-bottom: 13px; }
.patch.patch-short a { padding-top: 7px; padding-bottom: 6px; }

.patch.is-current a {
  background-color: #7A9A64;
  color: #16100C;
  border-color: #16100C;
}

.sackpatch-toggle {
  display: none;
  background-color: #EFE7D2;
  color: #251B15;
  border: 2px solid #5C4632;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
}

/* ============================================================
   HERO — ROASTER SCENE (.roastline)
   ============================================================ */

.roastline {
  background-color: #16100C;
  border-bottom: 8px solid #5C4632;
  padding: 54px 0 40px 0;
  position: relative;
}

.roastline-floor {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr 400px;
  gap: 26px;
  align-items: end;
}

/* Drum roaster (left) */
.drumroaster {
  background-color: #16100C;
  border: 5px solid #5C4632;
  border-radius: 10px 10px 4px 4px;
  padding: 22px 18px 20px 18px;
  position: relative;
  min-height: 360px;
}

.drumroaster::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 26px;
  background-color: #8C7A54;
}

.drumroaster-smoke {
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  height: 52px;
  background-color: #F6EFD9;
}

.drumroaster-smoke::before,
.drumroaster-smoke::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F6EFD9;
}

.drumroaster-smoke::before { top: -14px; left: -6px; }
.drumroaster-smoke::after { top: -30px; left: 4px; }

.roaster-window {
  width: 150px;
  height: 150px;
  margin: 6px auto 18px auto;
  border-radius: 50%;
  background-color: #251B15;
  border: 9px solid #F6EFD9;
  position: relative;
  box-shadow: inset 0 0 0 4px #5C4632;
}

.roaster-window::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 46px;
  margin: -23px 0 0 -17px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background-color: #7A9A64;
  border: 3px solid #16100C;
}

.roaster-hatch {
  width: 120px;
  height: 30px;
  margin: 0 auto 14px auto;
  background-color: #5C4632;
  border: 3px solid #251B15;
  border-radius: 4px;
  position: relative;
}

.roaster-hatch::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  margin-left: -18px;
  width: 36px;
  height: 4px;
  background-color: #16100C;
}

.roaster-plate {
  color: #F6EFD9;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-top: 2px solid #5C4632;
  padding-top: 10px;
}

.roaster-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed #5C4632;
  border-radius: 6px;
  pointer-events: none;
}

/* Cooling tray (center front) */
.coolingtray {
  align-self: end;
  margin-bottom: 6px;
  text-align: center;
}

.coolingtray-disc {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #8A5A34;
  border: 14px solid #F6EFD9;
  position: relative;
  box-shadow: inset 0 0 0 6px #5C4632;
  overflow: hidden;
}

.coolingtray-beans {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background-color: #251B15;
  background-image:
    radial-gradient(circle at 30% 34%, #7A9A64 0 5px, transparent 5px),
    radial-gradient(circle at 66% 28%, #A9713E 0 5px, transparent 5px),
    radial-gradient(circle at 46% 62%, #A9713E 0 5px, transparent 5px),
    radial-gradient(circle at 72% 68%, #7A9A64 0 5px, transparent 5px),
    radial-gradient(circle at 24% 70%, #A9713E 0 5px, transparent 5px);
}

.stirarm-a,
.stirarm-b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 8px;
  background-color: #7A9A64;
  border-radius: 4px;
  transform-origin: 0 50%;
}

.stirarm-a { transform: rotate(18deg); }
.stirarm-b { transform: rotate(198deg); }

.coolingtray-scoop {
  width: 62px;
  height: 20px;
  margin: 10px auto 0 auto;
  background-color: #F6EFD9;
  border: 3px solid #5C4632;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.coolingtray-scoop::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 2px;
  width: 34px;
  height: 6px;
  background-color: #F6EFD9;
  border: 3px solid #5C4632;
  border-radius: 3px;
}

.coolingtray-label {
  margin-top: 12px;
  color: #F6EFD9;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Roast log sheet (right) */
.roastlog {
  background-color: #EFE7D2;
  color: #251B15;
  border: 4px solid #5C4632;
  border-radius: 6px;
  padding: 26px 26px 24px 30px;
  position: relative;
  transform: rotate(-0.8deg);
}

.roastlog-clip {
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -42px;
  width: 84px;
  height: 24px;
  background-color: #5C4632;
  border: 3px solid #16100C;
  border-radius: 4px 4px 10px 10px;
}

.roastlog-rule {
  height: 3px;
  background-color: #5C4632;
  margin-bottom: 16px;
}

.roastlog h1 {
  color: #251B15;
  font-size: 2.15rem;
  margin-bottom: 10px;
}

.roastlog .headline-cardamom {
  color: #3F5A2E;
}

.roastlog-stamp {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 3px solid #3F5A2E;
  color: #3F5A2E;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.roastlog p {
  color: #251B15;
  font-size: 1.02rem;
}

.roastlog-meta {
  border-top: 2px solid #8C7A54;
  margin-top: 16px;
  padding-top: 14px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: #55331D;
}

.patchbtn {
  display: inline-block;
  background-color: #7A9A64;
  color: #16100C;
  text-decoration: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border: 3px dashed #16100C;
  letter-spacing: 0.04em;
  margin: 6px 0 10px 0;
}

.patchbtn:hover,
.patchbtn:focus {
  background-color: #F6EFD9;
  color: #16100C;
  border-style: solid;
}

.textlink {
  color: #3F5A2E;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
}

.textlink:hover,
.textlink:focus { color: #251B15; }

/* ============================================================
   GENERIC SECTION SHELLS
   ============================================================ */

.band {
  padding: 60px 0;
}

.band-deep {
  background-color: #16100C;
  border-top: 6px solid #5C4632;
  border-bottom: 6px solid #5C4632;
}

.band-roast {
  background-color: #251B15;
}

.band-burlap {
  background-color: #8C7A54;
  color: #16100C;
}

.band-paper {
  background-color: #EFE7D2;
  color: #251B15;
}

.section-eyebrow {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A9A64;
  margin-bottom: 10px;
}

.band-burlap .section-eyebrow { color: #16100C; }
.band-paper .section-eyebrow { color: #55331D; }

.section-title {
  color: #F6EFD9;
  margin-bottom: 16px;
}

.band-paper .section-title { color: #251B15; }
.band-burlap .section-title { color: #16100C; }

.lede {
  font-size: 1.08rem;
  max-width: 820px;
  color: #F6EFD9;
}

.band-paper .lede { color: #251B15; }
.band-burlap .lede { color: #16100C; }

.prose p {
  color: #EFE7D2;
}

.band-paper .prose p { color: #251B15; }

.prose a {
  font-weight: 700;
}

/* ============================================================
   CUPPING FLIGHT — six bowls on a long log-paper table
   ============================================================ */

.cupflight {
  background-color: #16100C;
  padding: 64px 0 70px 0;
  border-bottom: 8px solid #5C4632;
}

.cuptable {
  background-color: #EFE7D2;
  border: 5px solid #5C4632;
  border-radius: 8px;
  padding: 46px 34px 34px 34px;
  position: relative;
}

.cuptable-rail {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  height: 16px;
  background-color: #5C4632;
  border-radius: 8px 8px 0 0;
}

.cupflight-head { margin-bottom: 40px; }

.cupflight-head h2 { color: #251B15; }
.cupflight-head p { color: #251B15; max-width: 780px; }

.cuprows { position: relative; }

.cuprow {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.cuprow-back {
  justify-content: flex-start;
  padding-left: 16%;
}

.cuprow-front {
  justify-content: flex-start;
  margin-top: 40px;
}

.cupcell {
  width: 26%;
  margin-bottom: 26px;
}

.cupcell-a { transform: translateY(0); }
.cupcell-b { transform: translateY(14px); }
.cupcell-c { transform: translateY(-8px); }
.cupcell-d { transform: translateY(20px); }
.cupcell-e { transform: translateY(2px); }
.cupcell-f { transform: translateY(26px); }

.cupbowl {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px auto;
  border-radius: 50%;
  background-color: #F6EFD9;
  border: 6px solid #5C4632;
  position: relative;
  overflow: hidden;
}

.cupfill {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 50% 50% 46% 46%;
  border: 2px solid #251B15;
}

.cupfill-cinnamon { height: 34px; background-color: #A9713E; }
.cupfill-med      { height: 44px; background-color: #8A5A34; }
.cupfill-city     { height: 54px; background-color: #6E4526; }
.cupfill-full     { height: 62px; background-color: #55331D; }
.cupfill-french   { height: 70px; background-color: #3C2312; }
.cupfill-italian  { height: 78px; background-color: #291709; }

.cupspoon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 42px;
  background-color: #5C4632;
  border-radius: 5px;
  z-index: 3;
}

.cupspoon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -7px;
  width: 24px;
  height: 16px;
  border-radius: 50%;
  background-color: #5C4632;
}

.cupspoon.spoon-a { transform: rotate(12deg); }
.cupspoon.spoon-b { transform: rotate(-14deg); }
.cupspoon.spoon-c { transform: rotate(22deg); }
.cupspoon.spoon-d { transform: rotate(-8deg); }
.cupspoon.spoon-e { transform: rotate(16deg); }
.cupspoon.spoon-f { transform: rotate(-20deg); }

.samplecard {
  background-color: #F6EFD9;
  border: 3px solid #5C4632;
  border-radius: 4px;
  padding: 16px 16px 14px 16px;
  position: relative;
}

.samplecard h3 {
  color: #251B15;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.samplecard p {
  color: #251B15;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.ctag {
  display: inline-block;
  background-color: #7A9A64;
  color: #16100C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border: 2px solid #16100C;
  border-radius: 3px;
}

.card-stamp {
  border: 3px solid #3F5A2E;
  box-shadow: inset 0 0 0 3px #F6EFD9, inset 0 0 0 6px #3F5A2E;
}

.stamp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 3px solid #3F5A2E;
  color: #3F5A2E;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  transform: rotate(6deg);
  background-color: #EFE7D2;
}

/* ============================================================
   DEGAS STRIP
   ============================================================ */

.degas {
  background-color: #16100C;
  border-top: 5px solid #5C4632;
  border-bottom: 5px solid #5C4632;
  padding: 26px 0;
}

.degas-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.vent-glyph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7A9A64;
  border: 3px solid #F6EFD9;
  position: relative;
  flex: 0 0 auto;
}

.vent-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background-color: #16100C;
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 30% 50%);
}

.degas-dots {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 26px;
  flex: 0 0 auto;
}

.degas-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F6EFD9;
}

.degas-dot.d2 { margin-bottom: 4px; }
.degas-dot.d3 { margin-bottom: 8px; }
.degas-dot.d4 { margin-bottom: 12px; }
.degas-dot.d5 { margin-bottom: 16px; }

.degas-text {
  color: #F6EFD9;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.98rem;
  margin: 0;
  flex: 1 1 320px;
}

/* ============================================================
   CONTENT BLOCKS / PILLARS
   ============================================================ */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.pillar {
  background-color: #251B15;
  border: 3px solid #5C4632;
  border-left: 8px solid #7A9A64;
  border-radius: 5px;
  padding: 22px 22px 18px 22px;
}

.pillar h3 { color: #F6EFD9; }
.pillar p { color: #EFE7D2; font-size: 0.96rem; }

.band-burlap .pillar {
  background-color: #16100C;
  border-color: #EFE7D2;
  border-left-color: #EFE7D2;
}

.band-burlap .pillar h3 { color: #F6EFD9; }
.band-burlap .pillar p { color: #EFE7D2; }

/* Process rail */
.process {
  margin-top: 34px;
  border-left: 6px solid #5C4632;
  padding-left: 0;
}

.process-step {
  position: relative;
  padding: 0 0 26px 52px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #7A9A64;
  border: 4px solid #16100C;
}

.process-step h3 { color: #F6EFD9; margin-bottom: 6px; }
.band-paper .process-step h3 { color: #251B15; }
.process-step p { color: #EFE7D2; margin: 0; }
.band-paper .process-step p { color: #251B15; }

/* Detail rows for services page */
.detail-row {
  background-color: #251B15;
  border: 3px solid #5C4632;
  border-radius: 6px;
  padding: 26px 28px;
  margin-bottom: 22px;
}

.detail-row h3 {
  color: #F6EFD9;
  border-bottom: 3px solid #5C4632;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.detail-row p { color: #EFE7D2; }
.detail-row .row-tag {
  display: inline-block;
  background-color: #7A9A64;
  color: #16100C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 2px solid #16100C;
  border-radius: 3px;
  margin-bottom: 10px;
}

.pull-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.pull-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #EFE7D2;
}

.pull-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background-color: #7A9A64;
  border: 2px solid #16100C;
}

.band-paper .pull-list li { color: #251B15; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 34px;
}

.form-panel {
  background-color: #EFE7D2;
  color: #251B15;
  border: 4px solid #5C4632;
  border-radius: 6px;
  padding: 26px 26px 22px 26px;
}

.form-panel h3 { color: #251B15; }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: #251B15;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  font-family: Georgia, serif;
  font-size: 1rem;
  padding: 11px 12px;
  border: 3px solid #5C4632;
  border-radius: 4px;
  background-color: #F6EFD9;
  color: #16100C;
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: 3px solid #7A9A64;
  outline-offset: 1px;
}

.form-note {
  font-size: 0.86rem;
  color: #55331D;
  margin-top: 12px;
}

.form-status {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3F5A2E;
  margin-top: 12px;
  min-height: 20px;
}

.info-panel {
  background-color: #251B15;
  border: 3px solid #5C4632;
  border-left: 8px solid #7A9A64;
  border-radius: 6px;
  padding: 24px;
}

.info-panel h3 { color: #F6EFD9; }
.info-panel p { color: #EFE7D2; }

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 2px dashed #5C4632;
  color: #EFE7D2;
  font-size: 0.96rem;
}

.info-list li strong {
  display: block;
  color: #7A9A64;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.faq-item {
  background-color: #251B15;
  border: 3px solid #5C4632;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #251B15;
  color: #F6EFD9;
  border: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7A9A64;
  font-size: 1.3rem;
}

.faq-item.is-open .faq-question::after { content: "-"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms linear;
}

.faq-answer p {
  color: #EFE7D2;
  margin: 0;
  padding: 0 20px 18px 20px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background-color: #8C7A54;
  color: #16100C;
  border-top: 6px solid #5C4632;
  border-bottom: 6px solid #5C4632;
  padding: 50px 0;
}

.cta-band h2 { color: #16100C; }
.cta-band p { color: #16100C; max-width: 760px; }

.cta-band .patchbtn {
  background-color: #16100C;
  color: #F6EFD9;
  border-color: #F6EFD9;
}

.cta-band .patchbtn:hover,
.cta-band .patchbtn:focus {
  background-color: #F6EFD9;
  color: #16100C;
  border-color: #16100C;
}

/* ============================================================
   FOOTER — SACK STACK BASE (.sackstack)
   ============================================================ */

.sackstack {
  background-color: #16100C;
  border-top: 8px solid #5C4632;
  padding: 54px 0 0 0;
}

.sackstack-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}

.sackrows { position: relative; }

.sackrow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sackrow-upper { margin-bottom: 20px; padding-left: 6%; }
.sackrow-lower { padding-left: 20%; }

.sack {
  background-color: #8C7A54;
  border: 3px solid #5C4632;
  border-radius: 8px 8px 14px 14px;
  padding: 20px 20px 24px 20px;
  min-width: 150px;
  position: relative;
}

.sack::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 10px;
  right: 10px;
  height: 9px;
  background-color: #7d6c49;
  border-radius: 6px 6px 0 0;
  border-bottom: 2px dashed #5C4632;
}

.sack a {
  color: #F6EFD9;
  text-decoration: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.sack a:hover,
.sack a:focus { color: #16100C; }

.sack-label {
  display: block;
  background-color: #EFE7D2;
  color: #251B15;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 2px solid #16100C;
  border-radius: 3px;
  margin-bottom: 10px;
  width: fit-content;
}

.sackstack-plate {
  background-color: #16100C;
  border: 3px solid #5C4632;
  border-radius: 6px;
  padding: 22px;
  box-shadow: inset 0 0 0 4px #251B15;
}

.sackstack-plate h3 {
  color: #F6EFD9;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.sackstack-plate p {
  color: #EFE7D2;
  font-size: 0.94rem;
}

.sackstack-plate .rivet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #8C7A54;
  border: 2px solid #5C4632;
  margin-bottom: 12px;
}

.sackstack-plinth {
  margin-top: 44px;
  background-color: #5C4632;
  border-top: 4px solid #16100C;
  padding: 20px 0;
}

.sackstack-plinth-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  color: #F6EFD9;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.86rem;
}

.sackstack-plinth-inner a { color: #F6EFD9; }
.sackstack-plinth-inner a:hover,
.sackstack-plinth-inner a:focus { color: #16100C; }

.plinth-bean {
  width: 12px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background-color: #7A9A64;
  border: 2px solid #16100C;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.no-js .reveal,
html.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .roastline-floor {
    grid-template-columns: 1fr 1fr;
  }
  .roastlog {
    grid-column: 1 / -1;
    transform: none;
    margin-top: 20px;
  }
  .sackstack-inner {
    grid-template-columns: 1fr;
  }
  .cupcell { width: 40%; }
  .cuprow-back { padding-left: 0; }
  .cuprow-front { margin-top: 24px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .sackpatch-inner {
    align-items: stretch;
  }
  .sackpatch-toggle { display: inline-block; margin-left: auto; }
  .sackpatch-nav {
    display: none;
    width: 100%;
    flex-direction: column;
  }
  .sackpatch-nav.is-open { display: flex; }
  .patch a { transform: none; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .cupcell { width: 100%; }
  .cupcell-a, .cupcell-b, .cupcell-c,
  .cupcell-d, .cupcell-e, .cupcell-f { transform: none; }
  .sackrow-upper, .sackrow-lower { padding-left: 0; }
  .roastline-floor { grid-template-columns: 1fr; }
  .roastlog h1 { font-size: 1.7rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
}
