/** Shopify CDN: Minification failed

Line 1684:10 Expected ":"

**/
/*
 * Rolling Hills Chocolate — Shared Stylesheet
 * Shopify conversion: copy into assets/style.css and reference in theme.liquid
 * ============================================================================
 */

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

:root {
  --cream: #faf5ed;
  --cream-dark: #f0e6d0;
  --cream-mid: #e8d8bc;
  --brown-deep: #1e0d04;
  --brown-mid: #3b1a08;
  --brown: #6b3015;
  --amber: #b5621e;
  --amber-light: #d48840;
  --gold: #c4903a;
  --gold-light: #ddb86a;
  --tan: #e0cab0;
  --text-dark: #1e0d04;
  --text-mid: #4a2410;
  --text-muted: #7a5438;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --white: #ffffff;
  --black: #000000;
}

/* ── Text color overrides ── */
h2.section-title { color: var(--black); }
.section-eyebrow { color: var(--black); }
.products-note { color: var(--black); }
.about-teaser-text p { color: var(--black); }
.gifting-teaser-text p { color: var(--black); }
.newsletter-inner p { color: var(--black); }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: #800020;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 36px;
}
.announcement-track {
  display: flex;
  gap: 4rem;
  animation: annSlide 18s linear infinite;
  white-space: nowrap;
}
.announcement-bar span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  font-weight: 400;
  white-space: nowrap;
}
.announcement-bar .sep {
  color: white;
}
@keyframes annSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── NAV — Left logo, flex layout (matches index-wix.html) ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgb(255 255 255);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 130, 80, 0.2);
  padding: 0 5%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

/* ── LOGO (left) ── */
.nav-logo-center {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logo-text strong {
  font-family: "Garamond Semibold", "EB Garamond", Garamond, var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #835a22;
  letter-spacing: 0.15em;
}
.nav-logo-text span {
  /* font-size: 0.55rem; */
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  /* text-transform: uppercase; */
  font-weight: 500;
  color: var(--amber);
  font-style: italic;
  font-family: var(--serif);
}

/* ── NAV LINKS (middle) ── */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links-left,
.nav-links-right {
  gap: 1.8rem;
} /* kept for JS compat */

.nav-links li {
  position: relative;
}
.nav-links a,
.nav-more-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #835a22;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  padding: 0;
}
.nav-links a:hover,
.nav-links a.active,
.nav-more-link:hover,
.has-dropdown.dropdown-open > a,
.has-dropdown.dropdown-open .nav-more-link {
  color: #835a22;
}
.nav-links a.active {
  border-bottom: 2px solid #835a22;
  padding-bottom: 2px;
}

/* Chevron */
.nav-chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.22s;
}
.has-dropdown.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWNS ──
   padding-top = invisible hover bridge so cursor never leaves
   a hoverable zone moving from trigger to panel.
   150ms hide-delay = grace window if cursor briefly wanders. ── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  background: transparent;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  transition-delay: 150ms;
  z-index: 300;
}
.nav-dropdown-inner {
  background: #fff;
  border-top: 2px solid #835a22;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 32px rgba(30, 13, 4, 0.14);
  overflow: hidden;
}
.nav-dropdown-right {
  left: auto;
  right: 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-delay: 0ms;
}
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.78rem 1.15rem;
  text-decoration: none;
  border-bottom: 1px solid var(--cream-mid);
  transition: background 0.15s;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown-item:last-child {
  border-bottom: none;
}
.nav-dropdown-item:hover {
  background: var(--cream-dark);
}
.nav-dropdown-item > .ndi-label {
  text-align: left;
}
.nav-dropdown-inner > a {
  align-items: flex-start;
  padding: 10px 7px;
}
.ndi-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #835a22;
}
.ndi-sub {
  display: none;
  font-size: 0.69rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── RIGHT — icons + Shop Now ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-icon-btn {
  color: #835a22;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.nav-icon-btn:hover {
  color: #32230d;
}
.nav-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.cart-count {
  background: #835a22;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-shop-btn {
  background: var(--brown-deep);
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-shop-btn:hover {
  background: var(--brown-mid) !important;
  color: var(--cream) !important;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 500;
  padding: 4.5rem 1.8rem 2rem;
  transition: right 0.35s ease;
  box-shadow: -4px 0 24px rgba(30, 13, 4, 0.15);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-mid);
  cursor: pointer;
}
.mobile-menu > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu > ul > li {
  border-bottom: 1px solid var(--cream-mid);
}
.mobile-menu > ul a {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.9rem 0;
}
.mobile-menu > ul a:hover {
  color: var(--amber);
}
/* Mobile accordion groups */
.mobile-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  padding: 0.9rem 0;
}
.mobile-group-btn:hover {
  color: var(--amber);
}
.mobile-sub {
  display: none;
  list-style: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}
.mobile-group.open .mobile-sub {
  display: flex;
  flex-direction: column;
}
.mobile-sub li a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0;
  color: var(--text-muted);
  text-transform: none;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  /* background: var(--brown-deep); */
  background: #b8b1a9;
  background-image: url('DSC08617.png');
  padding: 5rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: right;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber)); */
  background: #907d51;
}
.page-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.page-hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  /* background: var(--gold); */
  background: var(--white);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero p {
  /* color: rgba(250, 245, 237, 0.65); */
  color: rgb(255 255 255);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: #948154;
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  animation: none;
  white-space: nowrap;
}
.marquee-inner span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}
.marquee-inner .dot {
  color: white;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5%;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--black);
}
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}
h2.section-title em {
  font-style: italic;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #948154;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #7d6c46;
}
.btn-ghost {
  background: transparent;
  color: var(--brown);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid var(--tan);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid rgba(250, 245, 237, 0.4);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--cream-mid);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30, 13, 4, 0.12);
}
.product-img-wrap {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

/* ── PRODUCT IMAGE SLIDER ── */
.product-slider {
  position: relative;
  overflow: hidden;
}
.product-slides {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}
.product-slides img {
  flex: 0 0 100%;
  width: 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.82);
  color: #32230d;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  z-index: 3;
}
.product-slider:hover .slider-arrow {
  opacity: 1;
}
.slider-arrow:hover {
  background: #fff;
}
.slider-arrow.prev {
  left: 0.6rem;
}
.slider-arrow.next {
  right: 0.6rem;
}
.slider-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 3;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}
@media (max-width: 600px) {
  .slider-arrow { opacity: 1; }
}
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #907d51;
  color: #ffffff;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 1px;
}
.product-info {
  padding: 1.5rem 1.6rem 1.8rem;
}
.product-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /* color: var(--text-muted); */
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  /* color: var(--brown-deep); */
  color: var(--black);
  margin-bottom: 0.6rem;
}
.product-desc {
  font-size: 0.92rem;
  /* color: var(--text-muted); */
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: none; /* shown by JS only when text is clamped */
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #948154;
  text-decoration: none;
  margin-bottom: 1.4rem;
}
.read-more:hover {
  color: #32230d;
  text-decoration: underline;
}
.product-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  max-height: 3.4rem; /* limit to two rows */
  overflow: hidden;
}
.product-tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 1px;
  background: var(--cream-dark);
  color: var(--text-muted);
  border: 1px solid var(--tan);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-mid);
  padding-top: 1.2rem;
}
.product-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  /* color: var(--brown); */
  color: var(--black);
  font-weight: 500;
}
.product-barcode {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  /* color: var(--text-muted); */
  color: var(--black);
  opacity: 0.6;
}
.add-cart-btn {
  background: #948154;
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  padding: 0.65rem 1.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.add-cart-btn:hover {
  background: #7d6c46;
}
.add-cart-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ── SHIPPING NOTE ── */
.shipping-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--cream-dark);
  border-radius: 2px;
  /* border-left: 3px solid var(--gold); */
  border-left: 3px solid #835a22;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.shipping-note svg {
  width: 18px;
  height: 18px;
  /* stroke: var(--amber); */
  stroke: #835a22;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 1px;
}
.shipping-note p {
  font-size: 0.9rem;
  /* color: var(--text-mid); */
  color: var(--black);
  line-height: 1.65;
}
.shipping-note strong {
  font-weight: 600;
  /* color: var(--brown); */
  color: var(--black);
}

/* ── ABOUT ── */
.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.about-img-inset {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--cream);
}
.about-text p {
  color: var(--black);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.about-text p strong {
  font-weight: 600;
  color: var(--brown);
}
.about-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.8rem 0;
}
.founder-note {
  background: var(--cream-dark);
  /* border-left: 3px solid var(--gold); */
  border-left: 3px solid #948154;
  padding: 1.2rem 1.4rem;
  border-radius: 0 2px 2px 0;
  margin-top: 1.5rem;
}
.founder-note p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  /* color: var(--brown-mid); */
  color: var(--black);
  line-height: 1.65;
  margin: 0;
}
.founder-note cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: var(--text-muted); */
  color: var(--black);
  font-weight: 500;
  display: block;
  margin-top: 0.6rem;
}

/* ── DIFFERENCE ── */
.diff-section {
  background: #efe4d3;
}
.diff-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.diff-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.diff-card {
  background: var(--cream);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  border-top: 2px solid var(--tan);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.diff-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.diff-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(148 129 84);
  line-height: 1;
  margin-bottom: 1rem;
}
.diff-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  /* color: var(--brown-deep); */
  color: var(--black);
  margin-bottom: 0.6rem;
}
.diff-card p {
  font-size: 0.9rem;
  /* color: var(--text-muted); */
  color: var(--black);
  line-height: 1.75;
}

/* ── PROCESS ── */
.process-section {
  background: var(--white);
}
.process-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  max-width: 600px;
  margin-bottom: 5rem;
}
.process-header .section-eyebrow {
  color: var(--black);
}
.process-header .section-eyebrow::before {
  background: var(--black);
}
.process-header h2 {
  color: var(--black);
}
.process-header p {
  color: var(--black);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-weight: 300;
}
.process-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.process-block {
  display: flex;
  gap: 5rem;
  align-items: center;
}
.process-block:nth-child(even) {
  flex-direction: row-reverse;
}
.process-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 0.75rem;
  flex: 1.25;
  aspect-ratio: 1.45 / 1;
}
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(30, 13, 4, 0.08);
}
.gallery-img-wrap-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 13;
}
.gallery-img-wrap-2 {
  grid-column: 9 / 13;
  grid-row: 1 / 7;
}
.gallery-img-wrap-3 {
  grid-column: 9 / 13;
  grid-row: 7 / 13;
}
.process-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-img-wrap:hover img {
  transform: scale(1.05);
}
.process-content {
  flex: 1;
}
.process-content .step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgb(148 129 84);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.process-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1rem;
}
.process-content p {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FARMING ── */
.farming-section {
  background: var(--cream-dark);
}
.farming-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.farming-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.farming-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.farming-gallery img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.farming-text p {
  /* color: var(--text-mid); */
  color: var(--black);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.farming-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.highlight-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.highlight-row span {
  font-size: 0.93rem;
  /* color: var(--text-mid); */
  color: var(--black);
  line-height: 1.65;
}
.highlight-row strong {
  font-weight: 600;
  color: var(--brown);
}

/* ── QUOTE ── */
.quote-section {
  position: relative;
  padding: 4rem 5%;
  text-align: center;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://static.wixstatic.com/media/3bf38d_049a8b6b3a604cb4955aa6a982a4a51b~mv2.jpg");
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.22) saturate(-0.6);
}
.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 13, 4, 0.55) 0%,
    rgba(59, 26, 8, 0.72) 100%
  );
}
.quote-section > * {
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--white);
  line-height: 0.5;
  display: block;
  margin-bottom: 0rem;
  opacity: 0.5;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--cream);
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
}
.quote-section cite {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-style: normal;
}

/* ── STORES ── */
.stores-section {
  background: var(--brown-deep);
}
.stores-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.stores-header {
  max-width: 540px;
  margin-bottom: 3rem;
}
.stores-header .section-eyebrow {
  color: var(--gold-light);
}
.stores-header .section-eyebrow::before {
  background: var(--gold);
}
.stores-header h2 {
  color: var(--cream);
}
.stores-header p {
  color: rgba(250, 245, 237, 0.55);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  font-weight: 300;
}
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.store-region {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(250, 245, 237, 0.1);
  border-radius: 2px;
  background: rgba(250, 245, 237, 0.03);
}
.store-region h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.store-region ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.store-region li {
  font-size: 0.86rem;
  color: rgba(250, 245, 237, 0.5);
  line-height: 1.55;
  padding-left: 0.8rem;
  position: relative;
}
.store-region li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--cream-dark);
}
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-detail strong {
  font-weight: 600;
  color: var(--brown);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--tan);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #948154;
}
.form-group textarea {
  height: 110px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--white);
  /* padding: 5.5rem 5%; */
  padding: 4rem 5%;
  text-align: center;
}
.newsletter-inner {
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-inner .section-eyebrow {
  /* color: #948154; */
  color: var(--black);
  justify-content: center;
}
.newsletter-inner .section-eyebrow::before {
  /* background: #948154; */
  background: var(--black);
}
.newsletter-inner h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--brown-deep);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.newsletter-inner p {
  /* color: var(--text-muted); */
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--cream);
  /* border: 1px solid var(--tan); */
  border: 1px solid #948154;
  border-right: none;
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  border-radius: 2px 0 0 2px;
}
.newsletter-form input::placeholder {
  color: var(--text-muted);
}
.newsletter-form input:focus {
  border-color: #948154;
}
.newsletter-form button {
  background: #948154;
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}
.newsletter-form button:hover,
.newsletter-form button:focus {
  background: #7d6c46;
}

/* ── FOOTER ── */
footer {
  /* background: linear-gradient(rgba(30, 13, 4, 0.82), rgba(30, 13, 4, 0.9)), url('images/DSC08562.jpg'); */
  background: linear-gradient(rgb(0 0 0 / 25%), rgb(0 0 0)), url('rolling-hills-DSC06600.JPG');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(250, 245, 237, 0.08);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: "Garamond Semibold", "EB Garamond", Garamond, var(--serif);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  /* color: var(--cream); */
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer-brand .tagline-small {
  /* font-size: 0.6rem; */
  font-size: 0.77rem;
  letter-spacing: 0.18em;
  /* text-transform: uppercase; */
  /* color: var(--gold); */
  color: var(--white);
  margin-bottom: 0.8rem;
  font-style: italic;
  font-family: var(--serif);
}
.footer-brand p {
  font-size: 0.88rem;
  /* color: rgba(250, 245, 237, 0.4); */
  color: #ffffff;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h4 {
  /* font-size: 0.65rem; */
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* color: var(--gold); */
  color: var(--white);
  margin-bottom: 1rem;
  /* font-weight: 600; */
  font-weight: bold;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li{
  list-style: inside;
  color: white;
}

.footer-col ul a {
  font-size: 0.88rem;
  /* color: rgba(250, 245, 237, 0.45); */
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--cream);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 237, 0.08);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  /* color: rgba(250, 245, 237, 0.28); */
  color: rgb(250 245 237 / 82%);
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  /* border: 1px solid rgba(250, 245, 237, 0.15); */
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  /* color: rgba(250, 245, 237, 0.4); */
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.8rem 5%;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  /* background: var(--cream-dark); */
  background: var(--white);
  border-bottom: 1px solid var(--cream-mid);
}
.breadcrumb a {
  /* color: var(--amber); */
  color: #948154;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-wrap,
  .farming-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-block {
    flex-direction: column !important;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }
  .process-gallery {
    width: 100%;
    aspect-ratio: 1.4 / 1;
  }
  .stores-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-img-inset {
    display: none;
  }
}
@media (max-width: 900px) {
  nav {
    height: 66px;
  }
  .nav-links,
  .nav-right .nav-links-right {
    display: none;
  }
  .nav-right .nav-shop-btn {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-logo-img {
    display: none;
  }
  .nav-logo-text span {
    /* display: none; */
  }
}
@media (max-width: 600px) {
  .marquee-strip {
    display: none;
  }
  section {
    padding: 4rem 5%;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .stores-grid {
    grid-t