:root {
  --forest: #354523;
  --olive: #46552c;
  --moss: #657544;
  --cream: #f5eedc;
  --parchment: #f8f3e8;
  --beige: #e7dcc5;
  --black: #171815;
  --warm-black: #22231e;
  --gold: #b49a4a;
  --brown: #7a6343;
  --line: rgba(70, 85, 44, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--parchment);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.announcement {
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.announce-track { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.announce-track [data-icon="truck"]::before { content: "[]"; margin-right: 8px; color: var(--gold); }
.announce-track i { color: var(--gold); font-style: normal; font-size: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 44px;
  background: var(--cream);
  border-bottom: 1px solid rgba(122, 99, 67, 0.18);
}
.desktop-nav, .header-actions { display: flex; align-items: center; gap: 26px; }
.desktop-nav a, .nav-link {
  border: 0;
  background: transparent;
  color: var(--warm-black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.nav-link svg { width: 13px; height: 13px; vertical-align: -2px; margin-left: 4px; }
.brand { display: flex; align-items: center; justify-content: center; gap: 12px; min-width: 280px; }
.brand-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  border: 3px solid var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
}
.brand-word {
  color: var(--forest);
  font-family: "Lobster Two", cursive;
  font-size: 58px;
  line-height: 0.85;
  text-shadow: 1px 1px 0 rgba(180,154,74,.3);
}
.brand.dark .brand-word { color: var(--cream); }
.brand.dark .brand-badge { background: var(--gold); color: var(--warm-black); border-color: var(--cream); }
.header-actions { justify-content: flex-end; gap: 18px; }
.icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--warm-black);
  cursor: pointer;
}
.icon-button svg { width: 24px; height: 24px; }
.cart-button span {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
}
.mobile-menu-button { display: none; }
.mobile-menu-button span { width: 22px; height: 2px; background: currentColor; display: block; margin: 3px 0; }

.shop-dropdown {
  position: absolute;
  top: 84px;
  left: 40px;
  width: 620px;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(23, 24, 21, 0.16);
}
.shop-dropdown.open { display: grid; }
.shop-dropdown strong { display: block; margin-bottom: 12px; font-family: "Bebas Neue"; font-size: 24px; }
.shop-dropdown a { display: block; padding: 8px 0; font-size: 14px; color: var(--olive); }
.dropdown-promo { padding: 18px; background: var(--forest); color: var(--cream); }
.dropdown-promo span { color: var(--gold); font-size: 12px; font-weight: 800; }
.dropdown-promo b { display: block; margin-top: 8px; font-family: "Bebas Neue"; font-size: 28px; line-height: .95; }

.hero {
  position: relative;
  min-height: 468px;
  overflow: hidden;
  background: var(--forest);
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,238,220,.92) 0%, rgba(245,238,220,.77) 31%, rgba(245,238,220,.16) 56%, rgba(23,24,21,.08) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(45%, 620px);
  padding: 54px 0 54px 58px;
}
.leaf-rule { display: flex; align-items: center; gap: 12px; width: 220px; margin-bottom: 16px; color: var(--gold); }
.leaf-rule span { flex: 1; height: 1px; background: currentColor; }
.kicker, .eyebrow { margin: 0 0 4px; color: var(--olive); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
h1, h2, h3 { margin: 0; }
.hero h1, .section-heading h2, .society-card h2, .story-section h2, .expedition h2, .wholesale-banner h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(76px, 8vw, 126px); line-height: .82; color: var(--forest); }
.script { margin: 8px 0 12px; color: var(--brown); font-family: "Lobster Two"; font-size: 35px; line-height: 1; }
.hero-text { max-width: 480px; margin: 0 0 24px; font-size: 16px; line-height: 1.55; font-weight: 600; }
.button-row { display: flex; gap: 12px; }
.btn, .product-card button, .society-card button, .expedition button, .checkout {
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 30px; }
.primary { background: var(--forest); color: var(--cream); }
.secondary { border-color: var(--warm-black); background: rgba(245,238,220,.88); color: var(--warm-black); }
.secondary.light { border-color: var(--cream); color: var(--cream); background: transparent; }
.compliance-badge {
  position: absolute;
  z-index: 2;
  right: 28%;
  top: 42px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  border: 5px double var(--gold);
  font-family: "Bebas Neue";
  font-size: 18px;
  line-height: .9;
  transform: rotate(-8deg);
}
.compliance-badge b { color: var(--gold); }

.trust-strip {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.trust-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.trust-strip article:last-child { border-right: 0; }
.trust-strip svg { width: 28px; height: 28px; color: var(--olive); }
.trust-strip b, .dark-benefits b { display: block; font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.trust-strip span, .dark-benefits small { display: block; margin-top: 4px; font-size: 12px; color: var(--brown); }

.commerce { background: var(--parchment); padding: 32px 42px 34px; }
.commerce-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 24px;
}
.products-area { min-width: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }
.section-heading h2 { font-size: 34px; color: var(--warm-black); }
.section-heading a { font-size: 12px; font-weight: 900; letter-spacing: .08em; color: var(--olive); }
.product-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.product-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: rgba(255,252,244,.82);
  border: 1px solid var(--beige);
  transition: border-color .18s ease, transform .18s ease;
}
.product-card:hover { border-color: var(--olive); transform: translateY(-2px); }
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 6px;
  background: var(--gold);
  color: var(--warm-black);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.bud {
  height: 188px;
  margin: 6px auto 12px;
  width: 86%;
  filter: drop-shadow(0 18px 14px rgba(34,35,30,.18));
  transition: transform .18s ease;
  background:
    radial-gradient(circle at 52% 24%, #e2d5a1 0 3%, transparent 4%),
    radial-gradient(circle at 35% 38%, #f1e7b7 0 3%, transparent 4%),
    radial-gradient(circle at 62% 52%, #be7b34 0 2%, transparent 3%),
    radial-gradient(ellipse at 48% 54%, #6f7d4a 0 13%, #394b2d 14% 24%, transparent 26%),
    radial-gradient(ellipse at 55% 40%, #93a35d 0 15%, #40522f 16% 28%, transparent 30%),
    radial-gradient(ellipse at 42% 66%, #809158 0 16%, #334329 17% 32%, transparent 34%),
    radial-gradient(ellipse at 58% 76%, #6d7c45 0 13%, #2e3b27 14% 26%, transparent 28%);
  border-radius: 47% 42% 45% 48%;
}
.product-card:hover .bud { transform: scale(1.03); }
.bud-two { filter: hue-rotate(8deg) saturate(1.08) drop-shadow(0 18px 14px rgba(34,35,30,.18)); transform: rotate(4deg); }
.bud-three { filter: hue-rotate(-12deg) brightness(.96) drop-shadow(0 18px 14px rgba(34,35,30,.18)); transform: rotate(-6deg); }
.bud-four { filter: sepia(.1) saturate(1.16) drop-shadow(0 18px 14px rgba(34,35,30,.18)); }
.bud-five { filter: hue-rotate(18deg) brightness(1.05) drop-shadow(0 18px 14px rgba(34,35,30,.18)); transform: rotate(7deg); }
.product-card h3 { font-family: "Bebas Neue"; font-size: 25px; line-height: 1; }
.product-card p { margin: 3px 0; color: var(--brown); font-size: 12px; }
.product-card b { font-size: 12px; color: var(--olive); }
.product-card div:not(.bud) { display: flex; justify-content: space-between; align-items: center; margin-top: auto; font-size: 13px; }
.product-card button {
  width: 100%;
  height: 38px;
  margin-top: 10px;
  background: var(--olive);
  color: var(--cream);
}
.product-card button:hover, .primary:hover, .society-card button:hover { background: #29361d; }

.promo-stack { display: grid; gap: 12px; padding-top: 48px; }
.society-card, .wholesale-card { position: relative; overflow: hidden; border: 1px solid rgba(180,154,74,.32); }
.society-card {
  min-height: 290px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 92%, rgba(180,154,74,.2), transparent 31%),
    linear-gradient(135deg, #26351e, var(--forest));
  color: var(--cream);
}
.society-card p { margin: 0; color: var(--gold); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.society-card h2 { font-size: 48px; line-height: .9; margin: 4px 0 12px; }
.society-card ul { margin: 0 0 18px; padding-left: 18px; font-size: 13px; line-height: 1.7; }
.society-card button { height: 38px; padding: 0 22px; background: var(--moss); color: var(--cream); }
.mini-pablo {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  border: 4px solid var(--gold);
  font-family: "Bebas Neue";
  font-size: 52px;
}
.wholesale-card { min-height: 142px; padding: 18px; background: var(--cream); }
.wholesale-card h3 { font-family: "Bebas Neue"; font-size: 28px; }
.wholesale-card p { margin: 3px 0 12px; color: var(--brown); font-size: 13px; }
.wholesale-card a { font-size: 12px; font-weight: 900; color: var(--forest); }
.boxes { position: absolute; right: 14px; bottom: 12px; display: flex; align-items: end; gap: 3px; }
.boxes span { width: 42px; height: 34px; background: var(--brown); border: 2px solid #5b472e; }
.boxes span:nth-child(2) { height: 48px; background: #8a6b43; }

.dark-benefits {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--warm-black);
  color: var(--cream);
}
.dark-benefits article { display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: 12px; padding: 18px 24px; border-right: 1px solid rgba(245,238,220,.12); }
.dark-benefits span { grid-row: span 2; color: var(--gold); font-size: 24px; }
.dark-benefits small { color: #d8ccb4; }

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 82px max(44px, calc((100vw - 1280px) / 2));
}
.story-section img { width: 100%; aspect-ratio: 1.22; object-fit: cover; border: 1px solid var(--beige); }
.story-section h2 { font-size: clamp(48px, 5vw, 76px); line-height: .9; color: var(--forest); margin-bottom: 18px; }
.story-section p { max-width: 570px; line-height: 1.65; color: #34352f; }
.quality-list { padding: 0; margin: 22px 0; list-style: none; }
.quality-list li { padding: 10px 0 10px 28px; border-top: 1px solid var(--line); position: relative; font-weight: 700; }
.quality-list li::before { content: "*"; position: absolute; left: 0; color: var(--gold); }
.meet {
  background: var(--forest);
  color: var(--cream);
}
.meet img { order: 1; border-color: rgba(245,238,220,.18); }
.meet div { order: 2; }
.meet .eyebrow, .meet h2, .meet p { color: var(--cream); }
.meet strong { color: var(--gold); }

.expedition {
  padding: 78px 32px;
  text-align: center;
  background:
    linear-gradient(rgba(248,243,232,.9), rgba(248,243,232,.9)),
    repeating-linear-gradient(45deg, rgba(122,99,67,.08) 0 1px, transparent 1px 9px);
}
.emblem { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: var(--forest); color: var(--gold); font-family: "Bebas Neue"; font-size: 32px; }
.expedition h2 { font-size: 64px; line-height: .9; color: var(--forest); }
.expedition p { max-width: 620px; margin: 12px auto 24px; line-height: 1.55; }
.expedition form { max-width: 620px; margin: 0 auto 18px; display: grid; grid-template-columns: 1fr 150px; }
.expedition input, .footer-newsletter input, .search-modal input { min-width: 0; height: 48px; border: 1px solid var(--line); padding: 0 16px; background: #fffaf0; }
.expedition button { background: var(--forest); color: var(--cream); }
.expedition div:last-child { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; color: var(--olive); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.wholesale-banner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  padding: 68px max(44px, calc((100vw - 1280px) / 2));
  background: linear-gradient(135deg, #24311e, var(--forest));
  color: var(--cream);
}
.wholesale-banner .eyebrow { color: var(--gold); }
.wholesale-banner h2 { max-width: 680px; font-size: 66px; line-height: .9; }
.wholesale-banner p { max-width: 520px; line-height: 1.55; }
.wholesale-banner a { display: inline-flex; align-items: center; height: 44px; padding: 0 24px; background: var(--cream); color: var(--forest); font-weight: 900; letter-spacing: .08em; font-size: 13px; }
.package-art { height: 210px; display: grid; place-items: center; border: 8px double var(--gold); background: #2c2118; color: var(--gold); font-family: "Bebas Neue"; font-size: 58px; line-height: .8; }
.package-art span { display: block; }

.footer { padding: 56px 42px 26px; background: #181a15; color: #ded2b9; }
.footer-top { max-width: 1380px; margin: 0 auto 34px; display: grid; grid-template-columns: 1.65fr repeat(4, 1fr) 1.35fr; gap: 28px; }
.footer .brand { justify-content: flex-start; min-width: 0; }
.footer-brand h3 { color: var(--cream); font-family: "Bebas Neue"; font-size: 32px; margin: 18px 0 8px; }
.footer p { line-height: 1.55; }
.footer h4 { margin: 0 0 14px; color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.footer nav a { display: block; margin: 0 0 10px; font-size: 13px; color: #d6cbb6; }
.footer-newsletter form { display: grid; grid-template-columns: 1fr 44px; }
.footer-newsletter input { height: 42px; background: #23251f; color: var(--cream); border-color: rgba(245,238,220,.16); }
.footer-newsletter button { border: 0; background: var(--gold); color: var(--warm-black); font-weight: 900; }
.footer-bottom { max-width: 1380px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(245,238,220,.14); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.disclaimer { max-width: 1380px; margin: 18px auto 0; font-size: 11px; color: #a99f8d; }

.overlay { position: fixed; inset: 0; z-index: 40; display: none; background: rgba(23,24,21,.46); }
.overlay.open { display: block; }
.drawer, .search-modal {
  position: fixed;
  z-index: 50;
  background: var(--cream);
  box-shadow: -20px 0 50px rgba(0,0,0,.24);
  display: none;
}
.drawer.open, .search-modal.open { display: block; }
.drawer { top: 0; right: 0; width: min(420px, 92vw); height: 100vh; padding: 28px; }
.close { position: absolute; top: 16px; right: 18px; border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.cart-drawer h2, .search-modal h2 { font-family: "Bebas Neue"; font-size: 46px; margin: 32px 0 18px; }
.cart-drawer article { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-drawer article span { display: block; margin-top: 4px; color: var(--brown); font-size: 13px; }
.tiny { width: 58px; height: 58px; margin: 0; }
.cart-total { display: flex; justify-content: space-between; margin: 24px 0; font-weight: 900; }
.checkout { width: 100%; height: 48px; background: var(--forest); color: var(--cream); }
.mobile-nav { left: 0; right: auto; box-shadow: 20px 0 50px rgba(0,0,0,.24); }
.mobile-nav a:not(.brand), .mobile-nav button { display: block; width: 100%; padding: 18px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-weight: 900; color: var(--forest); }
.search-modal { left: 50%; top: 16vh; transform: translateX(-50%); width: min(620px, 92vw); padding: 34px; }
.search-modal input { width: 100%; margin-bottom: 12px; }
.search-modal > button:last-child { height: 44px; padding: 0 24px; border: 0; background: var(--forest); color: var(--cream); font-weight: 900; }
.toast { position: fixed; left: 50%; bottom: 26px; z-index: 60; transform: translate(-50%, 80px); padding: 12px 20px; background: var(--forest); color: var(--cream); opacity: 0; transition: .2s; font-weight: 800; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1020px) {
  .site-header { padding: 0 22px; }
  .desktop-nav { gap: 16px; }
  .brand-word { font-size: 48px; }
  .hero-copy { width: 52%; padding-left: 32px; }
  .commerce-grid { grid-template-columns: 1fr; }
  .promo-stack { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .trust-strip, .dark-benefits { grid-template-columns: repeat(5, minmax(160px, 1fr)); overflow-x: auto; }
  .product-row { overflow-x: auto; grid-template-columns: repeat(5, 190px); padding-bottom: 8px; }
  .story-section, .wholesale-banner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand, .footer-newsletter { grid-column: span 3; }
}

@media (max-width: 640px) {
  .announcement { height: 34px; overflow: hidden; }
  .announce-track { animation: mobileTicker 10s infinite; display: block; text-align: center; }
  .announce-track span { display: block; line-height: 34px; }
  .announce-track i { display: none; }
  @keyframes mobileTicker { 0%,22%{transform:translateY(0)} 25%,47%{transform:translateY(-34px)} 50%,72%{transform:translateY(-68px)} 75%,97%{transform:translateY(-102px)} }
  .site-header { height: 64px; grid-template-columns: 44px 1fr 44px; padding: 0 14px; }
  .desktop-nav, .account, .header-actions .icon-button:first-child { display: none; }
  .mobile-menu-button { display: grid; }
  .header-actions { gap: 0; }
  .brand { min-width: 0; gap: 7px; }
  .brand-badge { width: 34px; height: 34px; border-width: 2px; font-size: 22px; }
  .brand-word { font-size: 39px; }
  .hero { min-height: 718px; display: flex; align-items: end; }
  .hero img { object-position: 64% 0; }
  .hero::before { background: linear-gradient(180deg, rgba(23,24,21,.02) 0%, rgba(23,24,21,.1) 42%, rgba(245,238,220,.32) 57%, rgba(245,238,220,.88) 68%, rgba(245,238,220,.98) 100%); }
  .hero-copy {
    width: auto;
    margin: 0 16px 24px;
    padding: 20px 14px 22px;
    text-align: center;
    background: rgba(245, 238, 220, .92);
    border: 1px solid rgba(122, 99, 67, .22);
  }
  .leaf-rule { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: 60px; }
  .script { font-size: 26px; }
  .hero-text { font-size: 14px; margin-bottom: 16px; }
  .button-row { justify-content: center; }
  .button-row .secondary { display: none; }
  .compliance-badge { width: 82px; height: 82px; right: 18px; top: 18px; font-size: 14px; }
  .trust-strip { display: flex; overflow-x: auto; min-height: 86px; }
  .trust-strip article { min-width: 180px; }
  .commerce { padding: 28px 16px; }
  .section-heading { align-items: center; }
  .section-heading h2 { max-width: 220px; font-size: 29px; }
  .product-row { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; }
  .product-card { min-width: 78vw; scroll-snap-align: start; }
  .product-card:nth-child(n+4) { display: none; }
  .promo-stack { grid-template-columns: 1fr; }
  .dark-benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); overflow: visible; }
  .dark-benefits article { padding: 16px 14px; }
  .story-section { padding: 54px 20px; gap: 26px; }
  .story-section img { order: 0; aspect-ratio: 1.08; }
  .story-section div { order: 1; }
  .story-section h2 { font-size: 48px; }
  .expedition { padding: 58px 18px; }
  .expedition h2 { font-size: 48px; }
  .expedition form { grid-template-columns: 1fr; gap: 8px; }
  .expedition button { height: 46px; }
  .wholesale-banner { padding: 52px 20px; }
  .wholesale-banner h2 { font-size: 48px; }
  .package-art { height: 170px; font-size: 44px; }
  .footer { padding: 42px 20px 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .footer-newsletter { grid-column: span 1; }
  .footer nav { border-top: 1px solid rgba(245,238,220,.14); padding-top: 16px; }
  .footer nav a { display: none; }
  .footer-bottom { display: block; }
}
