/** Shopify CDN: Minification failed

Line 314:2 Expected "}" to go with "{"

**/
:root {
  --cream: #f3eadb;
  --black: #11130f;
  --gold: #b9914c;
  --green: #17291f;
  --text: #2b2a24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #11130f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 5%;
  color: #fff;
}

.brand {
  font-family: Georgia, serif;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: .08em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .32em;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a,
.cart-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.cart-link {
  flex-shrink: 0;
}

.hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)), url('hero-tableland-coffee.png');
  background-size: cover;
  background-position: center;
  padding: 90px 5% 80px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  width: 100%;
  color: #fff;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 20px;
  color: #fff;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 24px;
  color: #fff;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #11130f;
  text-decoration: none;
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  margin: 0 12px 12px 0;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--gold);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 5%;
  background: #11130f;
  color: #fff;
}

.feature {
  border: 1px solid rgba(185,145,76,.45);
  padding: 26px;
}

.feature h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.section {
  padding: 78px 5%;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: 44px;
  margin: 0 0 14px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid #e1d5c2;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  margin: 0 0 8px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story img {
  width: 100%;
  border-radius: 2px;
}

.footer {
  background: #0f120e;
  color: #d8c7a3;
  text-align: center;
  padding: 42px 5%;
}

@media (max-width: 900px) {
  .site-header {
    display: block;
    padding: 22px 5%;
  }

  .brand {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px 18px;
    margin: 0 0 14px;
  }

  .cart-link {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    padding: 56px 5% 52px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 12px 0 0;
  }

  .features,
  .collection-grid,
  .story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 18px 5%;
  }

  .brand {
    font-size: 21px;
    letter-spacing: .06em;
  }

  .brand span {
    font-size: 11px;
    letter-spacing: .24em;
  }

  .nav a,
  .cart-link {
    font-size: 11px;
    letter-spacing: .06em;
  }

  .hero {
    padding: 42px 5% 44px;
  }

  .hero h1 {
    font-size: 30px;
  }
}.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  display: block;
  height: 58px;
  width: auto;
}

@media (max-width: 800px) {
  .brand-logo img {
    height: 52px;
  }
  