* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  background-color: #F4EDDD;
  color: #33261A;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: #D97E2E;
  color: #FBF6EA;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #A85F1E;
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

/* ============ CRATE-STACK NAV ============ */

.cratenav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #2A2620;
  border-bottom: 1px solid #42392C;
}

.harvest-strip {
  position: relative;
  height: 16px;
  background-image: repeating-linear-gradient(90deg, #C9A96A 0 30px, #42392C 30px 34px);
}

.hdot {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hdot.d1 { left: 8%; background-color: #D97E2E; }
.hdot.d2 { left: 21%; background-color: #6E8F4E; }
.hdot.d3 { left: 37%; background-color: #D97E2E; }
.hdot.d4 { left: 54%; background-color: #6E8F4E; }
.hdot.d5 { left: 69%; background-color: #D97E2E; }
.hdot.d6 { left: 84%; background-color: #6E8F4E; }

.happle {
  position: absolute;
  top: 11px;
  right: 5%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #B23A2E;
}

.cratenav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F7F1E3;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
}

.wheat {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 16px;
  flex: 0 0 auto;
}

.wheat .stalk {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 13px;
  background-color: #C9A96A;
}

.wheat .stalk.s1 { left: 3px; }
.wheat .stalk.s2 { left: 9px; }
.wheat .stalk.s3 { left: 15px; }

.wheat .stalk::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50% 50% 0 50%;
  background-color: #C9A96A;
  transform: rotate(45deg);
}

.wheat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 3px;
  border-radius: 2px;
  background-color: #D97E2E;
}

.wheat-lg {
  width: 26px;
  height: 20px;
}

.wheat-lg .stalk { height: 17px; }

.cratelinks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cratelinks a {
  position: relative;
  color: #D9CDB4;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.18s ease;
}

.cratelinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background-color: #D97E2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.cratelinks a::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  background-color: #D97E2E;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
}

.cratelinks a:hover,
.cratelinks a:focus-visible {
  color: #FBF6EA;
}

.cratelinks a:hover::after,
.cratelinks a:focus-visible::after {
  transform: scaleX(1);
}

.cratelinks a:hover::before,
.cratelinks a:focus-visible::before {
  transform: rotate(45deg) scale(1);
}

.cdot {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: #C9A96A;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 8px;
  background-color: #2A2620;
  border: 1px solid #42392C;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D9CDB4;
}

/* ============ DEPOT-SCALE HERO ============ */

.depothero {
  padding: 76px 24px 70px;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-chip {
  display: inline-block;
  background-color: #D97E2E;
  color: #FBF6EA;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.depothero h1 {
  color: #33261A;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.hl-nourish {
  color: #D97E2E;
}

.hero-copy {
  color: #75624A;
  font-size: 17.5px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.btn-primary {
  background-color: #D97E2E;
  color: #FBF6EA;
  padding: 14px 26px;
  box-shadow: 0 4px 0 #A85F1E;
}

.btn-primary:hover {
  background-color: #C26E22;
  color: #FBF6EA;
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #A85F1E;
}

.btn-outline {
  border: 2px solid #33261A;
  color: #33261A;
  padding: 12px 24px;
}

.btn-outline:hover {
  background-color: #33261A;
  color: #FBF6EA;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.hero-note {
  color: #75624A;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* ---- CSS depot scene ---- */

.hero-scene {
  min-width: 0;
}

.depot-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

@supports not (aspect-ratio: 1 / 1) {
  .depot-scene { height: 540px; }
}

.depot-scene span,
.depot-scene i,
.depot-scene b {
  display: block;
}

.depot-scene i {
  font-style: normal;
}

.sc-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12.5%;
  background-color: #E7DABE;
  border-top: 2px solid #42392C;
}

.sc-rail {
  position: absolute;
  left: 3%;
  right: 12%;
  top: 3%;
  height: 8px;
  border-radius: 4px;
  background-color: #2A2620;
}

.sc-chain {
  position: absolute;
  top: 4.5%;
  width: 2px;
  height: 11%;
  background-color: #42392C;
}

.sc-chain.c1 { left: 19.5%; }
.sc-chain.c2 { left: 28.5%; }

.sc-dial {
  position: absolute;
  left: 14.5%;
  top: 15%;
  width: 19%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #B08D45;
  border: 3px solid #8A6A48;
}

@supports not (aspect-ratio: 1 / 1) {
  .sc-dial { height: 19%; }
}

.sc-dial::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background-color: #FBF6EA;
  border: 2px solid #8A6A48;
}

.sc-needle {
  position: absolute;
  left: 50%;
  top: 16%;
  width: 3px;
  height: 30%;
  margin-left: -1.5px;
  background-color: #33261A;
  border-radius: 2px;
  transform: rotate(40deg);
  transform-origin: bottom center;
}

.sc-hook {
  position: absolute;
  left: 23.5%;
  top: 34%;
  width: 4px;
  height: 3.5%;
  background-color: #2A2620;
}

.sc-flat {
  position: absolute;
  left: 12%;
  top: 37.5%;
  width: 24%;
  height: 6.5%;
  background-color: #C9A96A;
  border: 2px solid #42392C;
  border-radius: 2px;
}

.sc-flat .ap {
  position: absolute;
  top: -34%;
  width: 15%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

@supports not (aspect-ratio: 1 / 1) {
  .sc-flat .ap { height: 20px; }
}

.sc-flat .a1 { left: 4%;  background-color: #B23A2E; }
.sc-flat .a2 { left: 20%; background-color: #6E8F4E; }
.sc-flat .a3 { left: 36%; background-color: #B23A2E; }
.sc-flat .a4 { left: 52%; background-color: #6E8F4E; }
.sc-flat .a5 { left: 68%; background-color: #B23A2E; }
.sc-flat .a6 { left: 84%; background-color: #6E8F4E; }

.sc-crate {
  position: absolute;
  left: 7%;
  width: 27%;
  height: 9.3%;
  background-color: #C9A96A;
  background-image: repeating-linear-gradient(180deg, #C9A96A 0 12px, #B08D45 12px 14px);
  border: 2px solid #42392C;
  border-radius: 2px;
}

.sc-crate.k1 { top: 57.5%; }
.sc-crate.k2 { top: 68%; }
.sc-crate.k3 { top: 78.5%; }

.sc-crate .stencil {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  text-align: center;
  color: #42392C;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.sc-crate .pk {
  position: absolute;
  border-radius: 50%;
}

.sc-crate .cab {
  width: 13%;
  aspect-ratio: 1 / 1;
  top: -26%;
  background-color: #6E8F4E;
  border: 2px solid #55743B;
}

@supports not (aspect-ratio: 1 / 1) {
  .sc-crate .cab { height: 13%; }
}

.sc-crate .pc1 { left: 12%; }
.sc-crate .pc2 { left: 34%; top: -34%; }
.sc-crate .pc3 { left: 58%; }

.sc-crate .sqq {
  width: 15%;
  height: 30%;
  top: -30%;
  border-radius: 45% 45% 40% 40%;
  background-color: #D97E2E;
  border: 2px solid #A85F1E;
}

.sc-crate .ps1 { left: 22%; }
.sc-crate .ps2 { left: 52%; top: -24%; }

.sc-crate .pot {
  width: 9%;
  aspect-ratio: 1 / 1;
  top: -30%;
  background-color: #8A6A48;
}

@supports not (aspect-ratio: 1 / 1) {
  .sc-crate .pot { height: 9%; }
}

.sc-crate .po1 { left: 10%; }
.sc-crate .po2 { left: 24%; top: -40%; }
.sc-crate .po3 { left: 40%; }
.sc-crate .po4 { left: 56%; top: -38%; }

.sc-sack {
  position: absolute;
  left: 32%;
  top: 62%;
  width: 15.5%;
  height: 25.5%;
  background-color: #E8DCC0;
  border: 2px solid #42392C;
  border-radius: 46% 46% 8% 8%;
  transform: rotate(5deg);
}

.sc-sack::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 16%;
  right: 16%;
  height: 14px;
  background-color: #D9CDB4;
  border: 2px solid #42392C;
  border-radius: 7px;
}

.sc-sack::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 44%;
  border-top: 2px dashed #8A6A48;
}

.sack-mark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  text-align: center;
  color: #B08D45;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.sc-stove {
  position: absolute;
  left: 47%;
  top: 83.5%;
  width: 12%;
  height: 3.6%;
  background-color: #2A2620;
  border-radius: 2px;
}

.sc-pot {
  position: absolute;
  left: 48%;
  top: 76.5%;
  width: 10%;
  height: 7%;
  background-color: #33261A;
  border-radius: 8% 8% 22% 22%;
}

.sc-pot::before,
.sc-pot::after {
  content: "";
  position: absolute;
  top: 30%;
  width: 8%;
  height: 3px;
  background-color: #33261A;
}

.sc-pot::before { left: -9%; }
.sc-pot::after { right: -9%; }

.sc-ladle {
  position: absolute;
  left: 58.5%;
  top: 72.5%;
  width: 3px;
  height: 5.5%;
  background-color: #42392C;
  transform: rotate(16deg);
}

.sc-ladle::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: -4px;
  width: 11px;
  height: 9px;
  border-radius: 0 0 10px 10px;
  background-color: #42392C;
}

.sc-steam {
  position: absolute;
  border-radius: 50%;
  background-color: #B08D45;
}

.sc-steam.st1 { left: 51.5%; top: 71.5%; width: 9px; height: 9px; }
.sc-steam.st2 { left: 54%;   top: 68.5%; width: 7px; height: 7px; }
.sc-steam.st3 { left: 52%;   top: 65.5%; width: 5px; height: 5px; }

.sc-belt {
  position: absolute;
  left: 61.5%;
  right: 3%;
  top: 83.9%;
  height: 12px;
  border-radius: 6px;
  background-color: #2A2620;
}

.sc-belt::after {
  content: "";
  position: absolute;
  inset: 3px 6px;
  border-radius: 4px;
  background-image: repeating-linear-gradient(90deg, #42392C 0 6px, #2A2620 6px 14px);
}

.sc-box {
  position: absolute;
  top: 76.5%;
  width: 9.5%;
  height: 7.2%;
  background-color: #B99B6B;
  border: 2px solid #42392C;
  border-radius: 2px;
}

.sc-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 14%;
  background-color: #C9A96A;
}

.sc-box::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 22%;
  height: 30%;
  background-color: #FBF6EA;
  border: 1px solid #75624A;
}

.sc-box.b1 { left: 64.5%; }
.sc-box.b2 { left: 76.5%; }

.sc-truck {
  position: absolute;
  left: 90.5%;
  top: 71.5%;
  width: 4px;
  height: 12%;
  background-color: #2A2620;
  transform: rotate(7deg);
}

.sc-truck::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -8px;
  width: 16px;
  height: 4px;
  background-color: #2A2620;
  border-radius: 2px;
}

.sc-truck::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -14px;
  width: 28px;
  height: 5px;
  background-color: #2A2620;
  border-radius: 2px;
}

.sc-truck .tw {
  position: absolute;
  bottom: -14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #33261A;
}

.sc-truck .w1 { left: -14px; }
.sc-truck .w2 { left: 6px; }

.sc-kanban {
  position: absolute;
  right: 4%;
  top: 6.5%;
  width: 36%;
  height: 27%;
  background-color: #FBF6EA;
  border: 2px solid #42392C;
  border-radius: 3px;
  display: flex;
  gap: 5%;
  padding: 4.5%;
}

.kb-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9%;
  background-color: #EFE4CC;
  border: 1px solid #42392C;
  padding: 6%;
}

.kb-head {
  height: 7%;
  background-color: #75624A;
  border-radius: 1px;
}

.kb-card {
  position: relative;
  height: 15%;
  background-color: #FBF6EA;
  border: 1px solid #75624A;
}

.kb-card.green {
  background-color: #6E8F4E;
  border-color: #55743B;
}

.kb-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -2.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #D97E2E;
}

.sc-map {
  position: absolute;
  left: 63%;
  top: 37%;
  width: 28%;
  height: 20%;
  background-color: #FBF6EA;
  border: 2px solid #42392C;
  border-radius: 3px;
  transform: rotate(-3deg);
}

.map-loop {
  position: absolute;
  inset: 20% 14%;
  border: 2px dashed #33261A;
  border-radius: 50%;
}

.mstop {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mstop.ms1 { left: 20%; top: 28%; background-color: #D97E2E; }
.mstop.ms2 { right: 22%; top: 40%; background-color: #6E8F4E; }
.mstop.ms3 { left: 44%; bottom: 12%; background-color: #8A6A48; }

.van {
  position: absolute;
  left: 38%;
  bottom: 22%;
  width: 18px;
  height: 10px;
  background-color: #D97E2E;
  border: 1px solid #42392C;
  border-radius: 2px;
}

.van i {
  position: absolute;
  bottom: -4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #33261A;
}

.van .vw1 { left: 1px; }
.van .vw2 { right: 1px; }

/* ============ MANIFEST ROWS ============ */

.manifest-section {
  padding: 78px 24px 70px;
}

.manifest-head {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.kicker-green {
  color: #55743B;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  color: #D97E2E;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-intro {
  color: #75624A;
  font-size: 17px;
  line-height: 1.75;
  max-width: 820px;
}

.manifest-row {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 12px;
  background-color: #FBF6EA;
  border: 1px solid #33261A;
  border-radius: 3px;
  display: grid;
  grid-template-columns: 150px 1fr 120px;
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
}

.manifest-row:last-child {
  margin-bottom: 0;
}

.crate-chip {
  position: relative;
  width: 106px;
  height: 84px;
  background-color: #C9A96A;
  background-image: repeating-linear-gradient(180deg, #C9A96A 0 16px, #B08D45 16px 18px);
  border: 2px solid #42392C;
  border-radius: 2px;
  justify-self: center;
}

.crate-num {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  text-align: center;
  color: #42392C;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
}

.crate-fill {
  position: absolute;
  top: -11px;
  left: 7px;
  right: 7px;
  height: 20px;
}

.crate-fill i {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.crate-fill i:nth-child(1) { left: 2%; }
.crate-fill i:nth-child(2) { left: 26%; }
.crate-fill i:nth-child(3) { left: 50%; }
.crate-fill i:nth-child(4) { left: 74%; }

.fill-green i  { background-color: #6E8F4E; border: 2px solid #55743B; }
.fill-orange i { background-color: #D97E2E; border: 2px solid #A85F1E; }
.fill-brown i  { background-color: #8A6A48; border: 2px solid #6B5238; width: 14px; height: 14px; top: 3px; }
.fill-tan i    { background-color: #B08D45; border: 2px solid #8A6A48; }
.fill-red i    { background-color: #B23A2E; border: 2px solid #8C2C22; }

.row-body h3 {
  color: #33261A;
  font-size: 22px;
  margin-bottom: 9px;
}

.row-body p {
  color: #75624A;
  font-size: 15.5px;
  line-height: 1.72;
}

.lot-stamp {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 2px;
  justify-self: center;
  background-color: #FBF6EA;
}

.lot-stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid currentColor;
}

.lot-green {
  border: 3px solid #6E8F4E;
  color: #6E8F4E;
}

.lot-orange {
  border: 3px solid #D97E2E;
  color: #A85F1E;
}

.rot1 { transform: rotate(-6deg); }
.rot2 { transform: rotate(4deg); }
.rot3 { transform: rotate(-3deg); }
.rot4 { transform: rotate(5deg); }
.rot5 { transform: rotate(-7deg); }

/* ============ METRIC BAND ============ */

.metric-band {
  background-color: #33261A;
  padding: 64px 24px;
}

.metric-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 0 18px;
}

.metric + .metric {
  border-left: 1px solid #FBF6EA;
}

.metric-num {
  display: block;
  color: #C9A96A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  display: block;
  color: #D9CDB4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ============ STATEMENT BAND ============ */

.statement-band {
  background-color: #33261A;
  border-top: 1px solid #42392C;
  padding: 72px 24px;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #C9A96A;
  padding-left: 34px;
}

.statement-text {
  color: #FBF6EA;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
}

.statement-attr {
  color: #D9CDB4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 20px;
}

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

.cta-band {
  padding: 86px 24px 90px;
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-band h2 {
  color: #D97E2E;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-band p {
  color: #75624A;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* ============ PASS-WINDOW FOOTER ============ */

.passfooter {
  background-color: #1E1A15;
  color: #D9CDB4;
  padding: 0 24px 44px;
}

.conveyor-strip {
  position: relative;
  height: 16px;
  margin: 0 -24px;
  background-image: repeating-linear-gradient(90deg, #D97E2E 0 4px, #B99B6B 4px 24px, #8A6A48 24px 27px, #1E1A15 27px 36px);
}

.belt-cap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background-color: #FBF6EA;
}

.footer-stack {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #F7F1E3;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 4px;
  text-decoration: none;
}

.footer-tag {
  color: #C9A96A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
  margin: 28px 0 30px;
}

.footer-links a {
  color: #D9CDB4;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid #42392C;
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #D97E2E;
  border-color: #D97E2E;
}

.fsep {
  color: #C9A96A;
}

.ladle-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 6px 0 28px;
}

.ladle {
  position: relative;
  width: 30px;
  height: 28px;
}

.ladle::before {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 15px;
  width: 2px;
  height: 17px;
  background-color: #C9A96A;
  transform: rotate(26deg);
  transform-origin: bottom center;
}

.ladle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 17px;
  height: 12px;
  border: 2px solid #C9A96A;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.ladle-steam {
  position: absolute;
  top: -15px;
  left: 4px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #C9A96A;
  border-right: 2px solid #C9A96A;
  border-top-right-radius: 14px;
}

.sprig {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #C9A96A;
}

.sprig::before,
.sprig::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 2px;
  background-color: #C9A96A;
}

.sprig::before {
  left: 0;
  transform: rotate(28deg);
}

.sprig::after {
  right: 0;
  transform: rotate(-28deg);
}

.sprig-flip {
  transform: scaleX(-1);
}

.footer-legal {
  color: #B3A284;
  font-size: 13.5px;
  line-height: 1.9;
}

/* ============ SCROLL REVEAL ============ */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .depothero h1 {
    font-size: 44px;
  }

  .depot-scene {
    max-width: 500px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .metric:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .cratelinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background-color: #2A2620;
    border-bottom: 1px solid #42392C;
    padding: 20px 24px 24px;
  }

  .cratenav.open .cratelinks {
    display: flex;
  }

  .cratelinks .cdot {
    display: none;
  }
}

@media (max-width: 720px) {
  .depothero {
    padding: 54px 20px 56px;
  }

  .depothero h1 {
    font-size: 37px;
  }

  .hero-copy {
    font-size: 16.5px;
  }

  .manifest-section {
    padding: 58px 20px 54px;
  }

  .section-title {
    font-size: 30px;
  }

  .manifest-row {
    grid-template-columns: 96px 1fr;
    gap: 20px;
    padding: 24px 22px;
  }

  .crate-chip {
    width: 84px;
    height: 68px;
  }

  .lot-stamp {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 62px;
    height: 62px;
    font-size: 15px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric + .metric {
    border-left: none;
  }

  .metric-num {
    font-size: 44px;
  }

  .statement-text {
    font-size: 20px;
  }

  .statement-inner {
    padding-left: 22px;
  }

  .cta-band h2 {
    font-size: 29px;
  }
}

@media (max-width: 520px) {
  .manifest-row {
    grid-template-columns: 1fr;
  }

  .crate-chip {
    justify-self: start;
  }

  .row-body h3 {
    padding-right: 70px;
  }

  .lot-stamp {
    top: 18px;
    right: 16px;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .footer-legal {
    font-size: 12.5px;
  }
}
