/** Shopify CDN: Minification failed

Line 1042:0 Unexpected "<"

**/
/* ============================================================
   Marietta Harvest — Design System
   Warm, health-forward local food brand · Marietta, GA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--bark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
  --cream:          #FAF6EE;
  --warm-white:     #FFFDF8;
  --terra:          #B85C2C;
  --terra-light:    #E07A4A;
  --terra-pale:     #F5E0D4;
  --terra-dark:     #8A3D18;
  --sage:           #5A7A5E;
  --sage-light:     #8AAF8E;
  --sage-pale:      #DCE9DC;
  --honey:          #C4940C;
  --honey-pale:     #FDF0C2;
  --bark:           #2E1F14;
  --bark-mid:       #5C3D28;
  --bark-light:     #8C6548;
  --parchment:      #EDD9A3;
  --parchment-mid:  #D9C07A;
  --border:         #E8DCC8;

  --font-serif: 'Cormorant Garamond', Palatino, Georgia, serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 64px;
  --container:  1100px;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 4px rgba(46,31,20,.07);
  --shadow-md: 0 4px 16px rgba(46,31,20,.10);
  --shadow-lg: 0 8px 32px rgba(46,31,20,.15);

  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .2s var(--ease);
}

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--font-serif); }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.18; }

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: 4.5rem 0; }
.section--dark { background: var(--bark); }
.section--white { background: var(--warm-white); }
.section--cream { background: var(--cream); }
.section--terra { background: var(--terra-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: .5rem;
}
.section-tag::before,
.section-tag::after { content:''; display:block; width:20px; height:1.5px; background:var(--terra); }
.section-tag.left::after { display:none; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--bark); margin-bottom: .6rem;
}
.section-title em { color: var(--terra); font-style: italic; }
.section-subtitle {
  font-size: 15px; color: var(--bark-light);
  line-height: 1.75; max-width: 540px;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px 26px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition),
              border-color var(--transition), color var(--transition);
  cursor: pointer; border: none;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--terra); color: white; }
.btn--primary:hover { background: var(--terra-dark); }
.btn--secondary {
  background: transparent; color: var(--bark-mid);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover { border-color: var(--bark-mid); color: var(--bark); }
.btn--dark { background: var(--bark); color: white; }
.btn--dark:hover { background: var(--bark-mid); }
.btn--outline-light {
  background: transparent; color: var(--parchment);
  border: 1.5px solid rgba(237,217,163,.4);
}
.btn--outline-light:hover { border-color: var(--parchment); }
.btn--small { padding: 7px 16px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── BADGES / CHIPS / PILLS ── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.pill--sage   { background: var(--sage-pale);  color: var(--sage);  border: 1px solid var(--sage-light); }
.pill--terra  { background: var(--terra-pale); color: var(--terra); border: 1px solid var(--terra-pale); }
.pill--honey  { background: var(--honey-pale); color: var(--honey); border: 1px solid var(--parchment-mid); }
.pill--bark   { background: #EDE8DC; color: var(--bark-mid); border: 1px solid var(--border); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.eyebrow--honey { background: var(--honey-pale); color: var(--honey); border: 1px solid var(--parchment-mid); }
.eyebrow--light { background: rgba(237,217,163,.15); color: var(--parchment); border: 1px solid rgba(237,217,163,.3); }
.eyebrow-dot { width:6px; height:6px; border-radius:50%; }
.eyebrow--honey .eyebrow-dot  { background: var(--honey); }
.eyebrow--light .eyebrow-dot  { background: var(--parchment); }

/* ── CARDS ── */
.card {
  background: var(--warm-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); border-color: var(--parchment-mid); }

/* ── FORMS ── */
.form-label { font-size: 12px; font-weight: 600; color: var(--bark-mid); margin-bottom: 5px; display: block; }
.form-label .req { color: var(--terra); }
.form-input {
  width: 100%; background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 13px;
  font-size: 14px; color: var(--bark); outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus { border-color: var(--terra); background: var(--warm-white); }
.form-input::placeholder { color: var(--bark-light); opacity: .65; }
textarea.form-input { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238C6548' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 34px;
}
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── DELIVERY BANNER ── */
.delivery-banner {
  background: var(--sage-pale); border-bottom: 1px solid var(--sage-light);
  padding: 9px 2rem; text-align: center;
  font-size: 13px; color: var(--sage); font-weight: 500;
}
.delivery-banner a { color: var(--sage); font-weight: 700; text-decoration: underline; }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--warm-white); border-bottom: 1.5px solid var(--border);
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-brand {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 600; color: var(--bark); letter-spacing: .02em;
}
.nav-brand span { color: var(--terra); }
.nav-logo { width: 36px; height: 36px; }
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--bark-mid);
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--bark); }
.nav-links a.active {
  color: var(--terra);
  border-bottom: 2px solid var(--terra);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cart {
  display: flex; align-items: center; gap: 7px;
  background: var(--terra); color: white;
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
}
.nav-cart:hover { background: var(--terra-dark); }
.nav-cart-count {
  background: white; color: var(--terra);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; padding: 4px 0;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--bark);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-height);
  background: var(--warm-white); z-index: 190;
  flex-direction: column; padding: 2rem;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 22px; font-family: var(--font-serif);
  color: var(--bark); padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a.active { color: var(--terra); }
.mobile-menu .btn { margin-top: 1.5rem; text-align: center; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(46,31,20,.45);
  z-index: 299; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw;
  background: var(--warm-white); z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 1.2rem 1.4rem; border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--bark); }
.cart-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--bark-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background var(--transition);
}
.cart-drawer-close:hover { background: var(--border); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart-drawer-footer {
  padding: 1.2rem 1.4rem; border-top: 1.5px solid var(--border);
  background: var(--cream); flex-shrink: 0;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; text-align: center;
  gap: .8rem; padding: 2rem;
}
.cart-empty-icon { font-size: 3rem; opacity: .4; }
.cart-empty h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--bark); }
.cart-empty p { font-size: 14px; color: var(--bark-light); }
.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  overflow: hidden; flex-shrink: 0; background: var(--terra-pale);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-benefit { font-size: 9px; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: .05em; }
.cart-item-name { font-family: var(--font-serif); font-size: 14px; color: var(--bark); margin: 1px 0 2px; }
.cart-item-variant { font-size: 11px; color: var(--bark-light); }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--cream);
}
.qty-btn { width: 28px; height: 28px; font-size: 16px; color: var(--bark-mid); font-weight: 300; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--border); }
.qty-num { width: 28px; text-align: center; font-size: 13px; font-weight: 600; border-inline: 1.5px solid var(--border); }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--bark); }
.cart-item-remove { font-size: 11px; color: var(--bark-light); text-decoration: underline; cursor: pointer; }
.free-delivery-bar {
  background: var(--sage-pale); border: 1px solid var(--sage-light);
  border-radius: var(--radius-md); padding: 10px 12px; margin-bottom: 12px;
}
.fdb-info { display: flex; justify-content: space-between; font-size: 12px; color: var(--sage); font-weight: 600; margin-bottom: 6px; }
.fdb-track { height: 5px; background: rgba(90,122,94,.2); border-radius: 3px; overflow: hidden; }
.fdb-fill { height: 5px; background: var(--sage); border-radius: 3px; transition: width .4s var(--ease); }
.cart-totals { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--bark-mid); }
.total-row.savings { color: var(--sage); font-weight: 600; }
.total-row.grand { font-size: 16px; font-weight: 700; color: var(--bark); border-top: 1.5px solid var(--border); padding-top: 8px; margin-top: 4px; }
.cart-trust { display: flex; justify-content: center; gap: 1.2rem; margin-top: 10px; }
.cart-trust span { font-size: 11px; color: var(--bark-light); }

/* ── FOOTER ── */
.footer { background: var(--bark); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.3rem; color: white; margin-bottom: .4rem; }
.footer-brand-tag { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.footer-nl-form { display: flex; gap: 7px; }
.footer-nl-input {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full); padding: 9px 14px;
  font-size: 13px; color: white; outline: none;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-input:focus { border-color: var(--parchment); }
.footer-nl-btn {
  background: var(--terra); color: white;
  padding: 9px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  transition: background var(--transition);
}
.footer-nl-btn:hover { background: var(--terra-dark); }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.social-icons { display: flex; gap: 10px; margin-top: 1rem; }
.social-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,.15); color: white; }

/* ── NEWSLETTER STRIP ── */
.nl-strip { background: var(--cream); border-top: 1.5px solid var(--border); padding: 3rem 0; }
.nl-strip-inner { max-width: 560px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.nl-strip h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--bark); margin-bottom: .4rem; }
.nl-strip p { font-size: 14px; color: var(--bark-light); margin-bottom: 1.4rem; }
.nl-form { display: flex; gap: 8px; }
.nl-form input { flex: 1; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-full); padding: 11px 16px; font-size: 14px; color: var(--bark); outline: none; }
.nl-form input:focus { border-color: var(--terra); }
.nl-form button { background: var(--terra); color: white; border-radius: var(--radius-full); padding: 11px 22px; font-size: 14px; font-weight: 600; transition: background var(--transition); }
.nl-form button:hover { background: var(--terra-dark); }

/* ============================================================
   PAGE STYLES: HOMEPAGE
   ============================================================ */

/* Hero */
.home-hero {
  background: var(--cream);
  padding: 4.5rem 0 3.5rem;
}
.home-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bark); margin-bottom: 1.2rem;
}
.hero-text h1 em { color: var(--terra); font-style: italic; }
.hero-text p { font-size: 16px; color: var(--bark-light); line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--bark-light); }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.hero-visual { position: relative; }
.hero-img-card {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(46,31,20,.72) 0%, transparent 55%);
  padding: 1.5rem;
}
.hero-img-tag {
  background: rgba(255,253,248,.93); color: var(--bark);
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  border-radius: var(--radius-full); display: inline-block; margin-bottom: 5px;
}
.hero-img-sub { font-size: 12px; color: rgba(255,255,255,.85); }

/* Values strip */
.values-strip { padding: 4rem 0; background: var(--warm-white); }
.values-strip .section-tag { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: transform var(--transition), border-color var(--transition); }
.value-card:hover { transform: translateY(-3px); border-color: var(--parchment-mid); }
.value-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 1rem; }
.value-icon.terra { background: var(--terra-pale); }
.value-icon.sage  { background: var(--sage-pale); }
.value-icon.honey { background: var(--honey-pale); }
.value-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--bark); margin-bottom: .5rem; }
.value-card p { font-size: 14px; color: var(--bark-light); line-height: 1.65; }

/* Story section (dark) */
.story-section { background: var(--bark); padding: 5rem 0; overflow: hidden; }
.story-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.story-img { border-radius: var(--radius-md); overflow: hidden; }
.story-img img { width: 100%; object-fit: cover; display: block; }
.story-img.tall { grid-row: span 2; }
.story-img.tall img { height: 100%; }
.story-text .section-tag { color: var(--parchment); opacity: .8; }
.story-title { color: white; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: .6rem 0 1.2rem; }
.story-title em { color: var(--parchment); }
.story-body { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 1.2rem; }
.story-facts { display: flex; gap: 2.5rem; margin: 1.8rem 0; }
.fact-num { font-family: var(--font-serif); font-size: 2rem; color: var(--parchment); line-height: 1; }
.fact-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }

/* Testimonials */
.testi-section { padding: 4.5rem 0; background: var(--warm-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.testi-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; }
.testi-stars { color: var(--honey); font-size: 14px; letter-spacing: 2px; margin-bottom: .8rem; }
.testi-text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: var(--bark); line-height: 1.65; margin-bottom: 1.1rem; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--terra-pale); color: var(--terra); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--bark); }
.testi-loc  { font-size: 12px; color: var(--bark-light); }

/* Local section */
.local-section { padding: 4.5rem 0; }
.local-section .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.local-pillars { display: flex; flex-direction: column; gap: .9rem; margin: 1.4rem 0 2rem; }
.local-pillar { display: flex; gap: 12px; align-items: flex-start; }
.pillar-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--sage-pale); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.pillar-text h4 { font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 2px; }
.pillar-text p { font-size: 13px; color: var(--bark-light); line-height: 1.55; }
.local-visual { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.local-visual img { width: 100%; height: 100%; object-fit: cover; }
.local-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: rgba(255,253,248,.93); border-radius: var(--radius-md); padding: 1rem 1.2rem;
}
.local-badge-title { font-size: 13px; font-weight: 700; color: var(--bark); margin-bottom: 5px; }
.local-badge-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.local-badge-tag { font-size: 11px; color: var(--bark-light); display: flex; align-items: center; gap: 4px; }
.local-badge-tag::before { content:''; width: 4px; height: 4px; border-radius: 50%; background: var(--parchment-mid); display: block; }

/* ============================================================
   PAGE STYLES: SHOP
   ============================================================ */
.shop-hero { background: var(--warm-white); border-bottom: 1.5px solid var(--border); padding: 2rem 0 1.8rem; }
.breadcrumb { font-size: 12px; color: var(--bark-light); margin-bottom: .6rem; }
.breadcrumb a { color: var(--bark-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span { color: var(--terra); }
.shop-hero h1 { font-size: 2.2rem; color: var(--bark); margin-bottom: .3rem; }
.shop-hero p { font-size: 14px; color: var(--bark-light); }

.cat-tabs {
  background: var(--warm-white); border-bottom: 1.5px solid var(--border);
  display: flex; overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 13px 20px; font-size: 13px; font-weight: 500;
  color: var(--bark-light); cursor: pointer; white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.cat-tab:hover { color: var(--bark); }
.cat-tab.active { color: var(--terra); border-bottom-color: var(--terra); font-weight: 600; }
.cat-tab-count { background: var(--terra-pale); color: var(--terra); border-radius: var(--radius-full); padding: 1px 7px; font-size: 11px; font-weight: 700; }
.cat-tab.active .cat-tab-count { background: var(--terra); color: white; }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding: 2rem 0; }
.sidebar { padding-right: 1.5rem; border-right: 1.5px solid var(--border); }
.filter-section { margin-bottom: 1.8rem; }
.filter-title { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--bark); margin-bottom: .8rem; display: flex; align-items: center; justify-content: space-between; }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--terra); width: 14px; height: 14px; }
.filter-option label { font-size: 13px; color: var(--bark-mid); cursor: pointer; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.filter-option label span { color: var(--bark-light); font-size: 12px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip { background: var(--cream); border: 1.5px solid var(--border); color: var(--bark-mid); font-size: 12px; padding: 5px 11px; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition); }
.filter-chip.active { background: var(--terra-pale); border-color: var(--terra); color: var(--terra); font-weight: 600; }
.benefit-chip { padding: 8px 11px; border-radius: var(--radius-md); font-size: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; margin-bottom: 6px; transition: opacity var(--transition); }
.benefit-chip:hover { opacity: .85; }
.benefit-chip.gut    { background: var(--terra-pale);  color: var(--terra); }
.benefit-chip.immune { background: var(--sage-pale);   color: var(--sage); }
.benefit-chip.sweet  { background: var(--honey-pale);  color: var(--honey); }
.benefit-chip.protein{ background: #EDE8DC; color: var(--bark-mid); }
.sidebar-promo { background: var(--terra-pale); border: 1.5px solid var(--parchment-mid); border-radius: var(--radius-md); padding: 1rem; }
.sidebar-promo-title { font-size: 12px; font-weight: 700; color: var(--terra); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.sidebar-promo-body { font-size: 12px; color: var(--bark-mid); line-height: 1.55; }

.product-grid-area { padding-left: 1.5rem; }
.grid-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.grid-count { font-size: 13px; color: var(--bark-light); }
.grid-count strong { color: var(--bark); }
.sort-select { font-size: 13px; color: var(--bark-mid); border: 1.5px solid var(--border); background: white; padding: 7px 12px; border-radius: var(--radius-md); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

/* Product Card */
.product-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), border-color var(--transition); }
.product-card:hover { transform: translateY(-3px); border-color: var(--parchment-mid); }
.product-card.bestseller { border-color: var(--terra); }
.bestseller-banner { background: var(--terra); color: white; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; text-align: center; padding: 4px; }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--terra-pale); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.product-badge { position: absolute; top: 10px; left: 10px; }
.product-body { padding: .9rem 1rem 1.1rem; }
.product-benefit { font-size: 10px; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.product-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--bark); line-height: 1.3; margin-bottom: 4px; }
.product-desc { font-size: 12px; color: var(--bark-light); line-height: 1.5; margin-bottom: 10px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 15px; font-weight: 700; color: var(--bark); }
.add-to-cart-btn {
  background: var(--terra); color: white;
  border-radius: var(--radius-full); padding: 7px 15px;
  font-size: 12px; font-weight: 600;
  transition: background var(--transition);
}
.add-to-cart-btn:hover { background: var(--terra-dark); }

/* ============================================================
   PAGE STYLES: PRODUCT DETAIL
   ============================================================ */
.product-detail-page { padding: 2.5rem 0 4rem; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.gallery-main { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1; background: var(--terra-pale); margin-bottom: 10px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color var(--transition); }
.gallery-thumb.active { border-color: var(--terra); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-placeholder { width: 72px; height: 72px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; cursor: pointer; border: 2px solid var(--border); transition: border-color var(--transition); }
.gallery-thumb-placeholder:hover, .gallery-thumb-placeholder.active { border-color: var(--terra); }

.product-eyebrow { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: .9rem; }
.detail-title { font-size: 2.4rem; color: var(--bark); margin-bottom: .3rem; line-height: 1.15; }
.detail-sub { font-size: 13px; color: var(--bark-light); margin-bottom: .6rem; }
.detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.rating-stars { color: var(--honey); font-size: 14px; letter-spacing: 2px; }
.rating-text { font-size: 13px; color: var(--bark-light); }
.rating-text a { color: var(--terra); text-decoration: underline; }
.detail-price-row { display: flex; align-items: baseline; gap: 10px; padding-bottom: 1.2rem; border-bottom: 1.5px solid var(--border); margin-bottom: 1.2rem; }
.detail-price { font-family: var(--font-serif); font-size: 2.2rem; color: var(--bark); }
.detail-per { font-size: 13px; color: var(--bark-light); }
.detail-desc { font-size: 14px; color: var(--bark-mid); line-height: 1.75; margin-bottom: 1.2rem; }
.ingredients-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.1rem; margin-bottom: 1.2rem; }
.ingredients-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bark); margin-bottom: .7rem; }
.ingredients-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.ingredient-chip { background: white; border: 1.5px solid var(--border); color: var(--bark-mid); font-size: 11px; padding: 4px 10px; border-radius: var(--radius-md); }
.ingredient-chip.highlight { background: var(--sage-pale); border-color: var(--sage-light); color: var(--sage); font-weight: 600; }
.ingredient-chip.special { background: var(--terra-pale); border-color: var(--terra-pale); color: var(--terra); font-weight: 700; }
.variant-section { margin-bottom: 1.2rem; }
.variant-label { font-size: 13px; font-weight: 600; color: var(--bark); margin-bottom: .5rem; display: flex; justify-content: space-between; }
.variant-label span { font-weight: 400; color: var(--bark-light); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn { padding: 8px 16px; border: 1.5px solid var(--border); background: white; border-radius: var(--radius-md); font-size: 13px; color: var(--bark-mid); cursor: pointer; transition: all var(--transition); }
.variant-btn:hover { border-color: var(--bark-mid); }
.variant-btn.selected { border-color: var(--terra); background: var(--terra-pale); color: var(--terra); font-weight: 600; }
.variant-btn.oos { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.subscribe-row { background: var(--honey-pale); border: 1.5px solid var(--parchment-mid); border-radius: var(--radius-md); padding: 10px 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; cursor: pointer; }
.subscribe-row input { accent-color: var(--honey); width: 15px; height: 15px; }
.subscribe-text { font-size: 13px; color: var(--bark-mid); flex: 1; }
.subscribe-text strong { color: var(--honey); }
.subscribe-badge { background: var(--honey); color: white; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-sm); white-space: nowrap; }
.add-row { display: flex; gap: 10px; align-items: center; margin-bottom: 1rem; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: white; }
.qty-selector .qty-btn { width: 40px; height: 46px; }
.qty-selector .qty-num { width: 40px; line-height: 46px; font-size: 15px; }
.atc-main { flex: 1; height: 46px; background: var(--terra); color: white; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; transition: background var(--transition); }
.atc-main:hover { background: var(--terra-dark); }
.wishlist-btn { width: 46px; height: 46px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: white; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: border-color var(--transition); }
.wishlist-btn:hover { border-color: var(--bark-mid); }
.trust-badges { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--bark-light); }
.wellness-card { background: var(--sage-pale); border: 1.5px solid var(--sage-light); border-radius: var(--radius-md); padding: 1.1rem; }
.wellness-card-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); margin-bottom: .8rem; }
.wellness-points { display: flex; flex-direction: column; gap: 9px; }
.wellness-point { display: flex; gap: 9px; align-items: flex-start; }
.wp-dot { width: 20px; height: 20px; background: var(--sage); color: white; border-radius: 50%; font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.wp-text { font-size: 13px; color: var(--sage); line-height: 1.55; }
.related-section { background: var(--warm-white); padding: 3.5rem 0; border-top: 1.5px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.5rem; }
.related-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: transform var(--transition); }
.related-card:hover { transform: translateY(-2px); }
.related-img { aspect-ratio: 1; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-img-placeholder { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.related-body { padding: .7rem .9rem; }
.related-name { font-family: var(--font-serif); font-size: .9rem; color: var(--bark); margin-bottom: 3px; line-height: 1.3; }
.related-price { font-size: 13px; font-weight: 700; color: var(--terra); }

/* ============================================================
   PAGE STYLES: COLLABORATE
   ============================================================ */
.collab-hero { background: var(--bark); padding: 5rem 0; position: relative; overflow: hidden; }
.collab-hero-bg { position: absolute; inset: 0; }
.collab-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.collab-hero-grad { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,31,20,.97) 0%, rgba(90,122,94,.12) 100%); }
.collab-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.collab-hero h1 { font-size: clamp(2rem,4vw,3.2rem); color: white; margin-bottom: 1.2rem; line-height: 1.15; }
.collab-hero h1 em { color: var(--parchment); font-style: italic; }
.collab-hero p { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.78; margin-bottom: 2rem; }
.hero-stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; }
.hero-stat .num { font-family: var(--font-serif); font-size: 2rem; color: var(--parchment); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 3px; }
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hv-img { border-radius: var(--radius-md); overflow: hidden; }
.hv-img img { width: 100%; object-fit: cover; display: block; }
.hv-img.tall { grid-row: span 2; }
.hv-img.tall img { height: 100%; }
.hv-small img { height: 140px; }
.hv-label-wrap { position: relative; }
.hv-label { position: absolute; bottom: 8px; left: 8px; background: rgba(255,253,248,.92); color: var(--bark); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-full); }

.makers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.maker-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1.2rem; transition: transform var(--transition), border-color var(--transition); }
.maker-card:hover { transform: translateY(-3px); border-color: var(--parchment-mid); }
.maker-icon { width: 50px; height: 50px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.maker-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--bark); margin-bottom: .4rem; }
.maker-card > p { font-size: 13px; color: var(--bark-light); line-height: 1.58; margin-bottom: .8rem; }
.maker-examples { display: flex; flex-wrap: wrap; gap: 5px; }
.example-tag { background: var(--cream); border: 1px solid var(--border); color: var(--bark-light); font-size: 10px; padding: 3px 8px; border-radius: var(--radius-full); }

.standards-section { background: var(--warm-white); padding: 4.5rem 0; }
.standards-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.standards-list { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.8rem; }
.standard-row { display: flex; gap: 14px; align-items: flex-start; }
.standard-num { width: 32px; height: 32px; border-radius: 50%; background: var(--terra-pale); color: var(--terra); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.standard-text h4 { font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 3px; }
.standard-text p { font-size: 13px; color: var(--bark-light); line-height: 1.55; }
.standards-quote-card { background: var(--bark); border-radius: var(--radius-xl); padding: 2rem; }
.sq-text { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: white; line-height: 1.55; margin-bottom: .5rem; }
.sq-text em { color: var(--parchment); }
.sq-attr { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.sq-img { border-radius: var(--radius-md); overflow: hidden; }
.sq-img img { width: 100%; height: 160px; object-fit: cover; }

.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: var(--border); z-index: 0; }
.step-card { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-icon { width: 54px; height: 54px; border-radius: 50%; border: 2.5px solid var(--border); background: var(--warm-white); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 1rem; }
.step-icon.current { background: var(--terra-pale); border-color: var(--terra); }
.step-num { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bark-light); margin-bottom: 4px; }
.step-name { font-family: var(--font-serif); font-size: 1rem; color: var(--bark); margin-bottom: 5px; }
.step-desc { font-size: 12px; color: var(--bark-light); line-height: 1.55; }

.partners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.partner-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; }
.partner-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: .6rem; }
.partner-type { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--terra); margin-bottom: 3px; }
.partner-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--bark); margin-bottom: 3px; }
.partner-loc { font-size: 12px; color: var(--bark-light); margin-bottom: 8px; }
.partner-desc { font-size: 13px; color: var(--bark-mid); line-height: 1.55; border-top: 1px solid var(--border); padding-top: .7rem; margin-bottom: .5rem; }
.partner-since { font-size: 11px; color: var(--bark-light); }

.apply-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 3rem; align-items: start; }
.apply-intro p { font-size: 14px; color: var(--bark-light); line-height: 1.75; margin-bottom: 1rem; }
.apply-checklist { display: flex; flex-direction: column; gap: 8px; margin: 1.2rem 0; }
.check-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--bark-mid); }
.check-icon { width: 20px; height: 20px; background: var(--sage-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.apply-note { background: var(--honey-pale); border: 1px solid var(--parchment-mid); border-radius: var(--radius-md); padding: 10px 13px; font-size: 12px; color: var(--bark-mid); line-height: 1.6; }
.apply-note strong { color: var(--honey); }
.apply-contact-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.2rem; margin-top: 1.2rem; }
.apply-contact-card p { font-size: 13px; color: var(--bark-mid); line-height: 1.6; }
.apply-contact-card a { color: var(--terra); font-weight: 600; }
.gform-wrap { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.gform-header { background: var(--warm-white); border-bottom: 1.5px solid var(--border); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.gform-icon { width: 32px; height: 32px; background: var(--terra-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.gform-title { font-size: 14px; font-weight: 700; color: var(--bark); }
.gform-sub { font-size: 11px; color: var(--bark-light); }
.gform-wrap iframe { width: 100%; border: none; display: block; min-height: 820px; }
.gform-footer { background: var(--warm-white); border-top: 1.5px solid var(--border); padding: 10px 18px; font-size: 11px; color: var(--bark-light); }

/* FAQ section (shared) */
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: start; }
.faq-cta-card { background: var(--bark); border-radius: var(--radius-xl); padding: 2rem; position: sticky; top: calc(var(--nav-height) + 1rem); }
.faq-cta-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.faq-cta-title { font-family: var(--font-serif); font-size: 1.5rem; color: white; margin-bottom: .6rem; line-height: 1.3; }
.faq-cta-title em { color: var(--parchment); }
.faq-cta-body { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.faq-cta-email { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; margin-top: 8px; }
.faq-list {}
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-question { padding: 15px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--bark); gap: 12px; }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; background: var(--terra-pale); color: var(--terra); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { font-size: 13px; color: var(--bark-light); line-height: 1.7; padding-bottom: 15px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   PAGE STYLES: ABOUT
   ============================================================ */
.about-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; background: var(--bark); }
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.about-hero-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,31,20,.92) 0%, rgba(46,31,20,.45) 50%, rgba(46,31,20,.18) 100%); }
.about-hero-inner { position: relative; z-index: 1; padding-bottom: 3.5rem; width: 100%; }
.hero-kicker { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--parchment); opacity: .75; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.hero-kicker::before { content: ''; display: block; width: 24px; height: 1px; background: var(--parchment); opacity: .5; }
.about-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: white; line-height: 1.1; margin-bottom: 1.2rem; max-width: 700px; }
.about-hero h1 em { color: var(--parchment); }
.about-hero-deck { font-size: 16px; color: rgba(255,255,255,.67); line-height: 1.78; max-width: 550px; margin-bottom: 2rem; }
.scroll-cue { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.38); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.scroll-cue-circle { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }

.origin-section { padding: 5rem 0; background: var(--warm-white); }
.origin-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pull-quote { border-left: 3px solid var(--terra); padding: .8rem 0 .8rem 1.2rem; margin: 1.6rem 0; }
.pull-quote p { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--bark); line-height: 1.55; }
.origin-visual { display: flex; flex-direction: column; gap: 12px; }
.origin-main { border-radius: var(--radius-xl); overflow: hidden; }
.origin-main img { width: 100%; height: 280px; object-fit: cover; }
.origin-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.origin-small { border-radius: var(--radius-md); overflow: hidden; }
.origin-small img { width: 100%; height: 145px; object-fit: cover; }

.mission-section { background: var(--bark); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.mission-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: rgba(196,148,12,.05); border-radius: 50%; pointer-events: none; }
.mission-inner { max-width: 780px; margin: 0 auto; position: relative; }
.mission-ornament { font-size: 2rem; margin-bottom: 1.5rem; opacity: .6; }
.mission-text { font-family: var(--font-serif); font-size: clamp(1.5rem,2.5vw,2rem); color: white; line-height: 1.55; margin-bottom: 1.5rem; }
.mission-text em { color: var(--parchment); font-style: italic; }
.mission-divider { width: 60px; height: 1.5px; background: var(--terra); margin: 2rem auto; }
.mission-sub { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 540px; margin: 0 auto; }

.about-values { padding: 4.5rem 0; }
.about-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.av-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; transition: transform var(--transition); }
.av-card:hover { transform: translateY(-3px); }
.av-card-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; }
.av-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.av-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--border); line-height: 1; margin-left: auto; }
.av-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--bark); margin-bottom: .5rem; }
.av-card p { font-size: 13px; color: var(--bark-light); line-height: 1.65; }

.timeline-section { padding: 4.5rem 0; background: var(--warm-white); }
.timeline-inner { max-width: 860px; margin: 0 auto; }
.tl-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.tl-list::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: start; margin-bottom: 2.5rem; }
.tl-left { text-align: right; padding-right: 2rem; padding-top: 6px; }
.tl-right { padding-left: 2rem; padding-top: 6px; }
.tl-center { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.tl-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--warm-white); border: 2.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.tl-dot.terra { background: var(--terra-pale); border-color: var(--terra); }
.tl-dot.sage  { background: var(--sage-pale);  border-color: var(--sage-light); }
.tl-dot.honey { background: var(--honey-pale); border-color: var(--parchment-mid); }
.tl-year { font-family: var(--font-serif); font-size: 1.4rem; color: var(--bark); font-weight: 400; }
.tl-label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.tl-event { font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 4px; line-height: 1.3; }
.tl-desc { font-size: 13px; color: var(--bark-light); line-height: 1.6; }
.tl-item.flip .tl-left { text-align: left; padding-right: 0; padding-left: 2rem; }
.tl-item.flip .tl-right { padding-left: 0; padding-right: 2rem; text-align: right; }

.team-section { padding: 4.5rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: transform var(--transition); }
.team-card:hover { transform: translateY(-3px); }
.team-photo { height: 200px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-info { padding: 1.3rem 1.4rem 1.5rem; }
.team-role { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.team-name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--bark); margin-bottom: .5rem; }
.team-bio { font-size: 13px; color: var(--bark-light); line-height: 1.65; margin-bottom: .8rem; }
.team-location { display: inline-flex; align-items: center; gap: 5px; background: var(--cream); border: 1px solid var(--border); color: var(--bark-light); font-size: 11px; padding: 4px 10px; border-radius: var(--radius-full); }

.photo-strip { display: grid; grid-template-columns: repeat(5,1fr); height: 210px; }
.ps-item { overflow: hidden; position: relative; cursor: pointer; }
.ps-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); display: block; }
.ps-item:hover img { transform: scale(1.06); }
.ps-overlay { position: absolute; inset: 0; background: rgba(46,31,20,.35); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.ps-item:hover .ps-overlay { opacity: 1; }
.ps-caption { color: white; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.impact-section { background: var(--bark); padding: 4.5rem 0; }
.impact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.impact-section .section-tag { color: rgba(237,217,163,.75); }
.impact-title { font-family: var(--font-serif); font-size: clamp(1.6rem,2.8vw,2.1rem); color: white; line-height: 1.25; margin: .5rem 0 1rem; }
.impact-title em { color: var(--parchment); }
.impact-body { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 1.5rem; }
.impact-pillar-list { display: flex; flex-direction: column; gap: 10px; }
.impact-pillar { display: flex; gap: 10px; align-items: flex-start; }
.ip-icon { width: 28px; height: 28px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.ip-text { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.55; }
.ip-text strong { color: rgba(255,255,255,.88); }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.impact-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 1.3rem; }
.impact-stat-num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--parchment); line-height: 1; }
.impact-stat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 5px; line-height: 1.4; }

.cta-band { background: var(--terra-pale); border-top: 1.5px solid var(--parchment-mid); border-bottom: 1.5px solid var(--parchment-mid); padding: 3.5rem 0; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--bark); margin-bottom: .6rem; }
.cta-band p { font-size: 14px; color: var(--bark-light); line-height: 1.7; max-width: 480px; margin: 0 auto 2rem; }
.cta-btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE STYLES: CONTACT
   ============================================================ */
.contact-hero { background: var(--bark); padding: 4rem 0 3.5rem; position: relative; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; }
.contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.contact-hero-grad { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,31,20,.97) 0%, rgba(90,122,94,.15) 100%); }
.contact-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-hero h1 { font-size: clamp(1.8rem,3.5vw,3rem); color: white; line-height: 1.15; margin-bottom: 1rem; }
.contact-hero h1 em { color: var(--parchment); }
.contact-hero p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.78; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 14px 16px; display: flex; align-items: center; gap: 14px; transition: background var(--transition); cursor: pointer; }
.contact-card:hover { background: rgba(255,255,255,.12); }
.cc-icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cc-label { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.cc-value { font-size: 14px; font-weight: 600; color: white; }
.cc-note  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.cc-arrow { margin-left: auto; color: rgba(255,255,255,.25); font-size: 16px; }

.intent-bar { background: var(--warm-white); border-bottom: 1.5px solid var(--border); padding: 1.2rem 0; }
.intent-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bark-light); margin-bottom: 10px; }
.intent-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.intent-chip { padding: 8px 16px; border-radius: var(--radius-full); border: 1.5px solid var(--border); background: white; font-size: 13px; font-weight: 500; color: var(--bark-mid); cursor: pointer; transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.intent-chip:hover { border-color: var(--bark-mid); color: var(--bark); }
.intent-chip.active { background: var(--terra-pale); border-color: var(--terra); color: var(--terra); font-weight: 700; }

.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; padding: 3rem 0; }

.form-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.form-card-header { padding: 1.5rem 1.8rem 1.3rem; border-bottom: 1.5px solid var(--border); }
.form-card-header h2 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--bark); margin-bottom: 4px; }
.form-card-header p { font-size: 13px; color: var(--bark-light); }
.form-card-body { padding: 1.5rem 1.8rem; }
.response-note { display: flex; align-items: center; gap: 8px; background: var(--sage-pale); border: 1px solid var(--sage-light); border-radius: var(--radius-md); padding: 9px 13px; margin-bottom: 14px; font-size: 12px; color: var(--sage); }
.rn-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }
.order-nudge { background: var(--honey-pale); border: 1.5px solid var(--parchment-mid); border-radius: var(--radius-md); padding: 11px 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.order-nudge-text { font-size: 13px; color: var(--bark-mid); flex: 1; }
.order-nudge-text strong { color: var(--honey); }
.order-nudge-link { font-size: 12px; font-weight: 700; color: var(--honey); text-decoration: underline; cursor: pointer; white-space: nowrap; }
.form-submit { width: 100%; height: 48px; background: var(--terra); color: white; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; transition: background var(--transition); }
.form-submit:hover { background: var(--terra-dark); }
.form-privacy { font-size: 11px; color: var(--bark-light); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-privacy a { color: var(--terra); text-decoration: underline; }

.contact-right { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.info-card-header { padding: 13px 16px; border-bottom: 1.5px solid var(--border); display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--bark); }
.info-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row-icon { width: 34px; height: 34px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.info-row-label { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--bark-light); margin-bottom: 2px; }
.info-row-value { font-size: 14px; font-weight: 600; color: var(--bark); }
.info-row-note { font-size: 12px; color: var(--bark-light); margin-top: 2px; line-height: 1.4; }

.hours-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 14px 16px; }
.hours-header { font-size: 13px; font-weight: 700; color: var(--bark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.status-open { background: var(--sage-pale); color: var(--sage); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); }
.hours-list { display: flex; flex-direction: column; gap: 7px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; }
.hours-day { color: var(--bark-mid); font-weight: 500; }
.hours-time { color: var(--bark); font-weight: 600; }
.hours-time.rest { color: var(--bark-light); font-weight: 400; }
.hours-note { font-size: 11px; color: var(--bark-light); line-height: 1.55; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }

.zone-card { background: var(--bark); border-radius: var(--radius-lg); overflow: hidden; }
.zone-map { height: 130px; background: #2A3A28; position: relative; display: flex; align-items: center; justify-content: center; }
.zone-map-pin { font-size: 2rem; position: relative; z-index: 1; }
.zone-map-label { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: rgba(255,253,248,.92); color: var(--bark); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); white-space: nowrap; }
.zone-pulse-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(90,122,94,.4); }
.zone-body { padding: 14px 16px; }
.zone-title { font-family: var(--font-serif); font-size: 1rem; color: white; margin-bottom: 5px; }
.zone-sub { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.55; margin-bottom: 10px; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.zone-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 11px; padding: 3px 9px; border-radius: var(--radius-full); }

.social-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 14px 16px; }
.social-card h3 { font-size: 13px; font-weight: 700; color: var(--bark); margin-bottom: 10px; }
.social-link-row { display: flex; flex-direction: column; gap: 8px; }
.social-link-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition); background: var(--cream); }
.social-link-item:hover { border-color: var(--parchment-mid); background: var(--warm-white); }
.sl-icon { width: 30px; height: 30px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.sl-name { font-size: 13px; font-weight: 600; color: var(--bark); }
.sl-handle { font-size: 11px; color: var(--bark-light); }
.sl-arr { margin-left: auto; color: var(--bark-light); font-size: 14px; }

.contact-faq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.faq-mini-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; }
.faq-mini-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-full); margin-bottom: 8px; }
.faq-mini-tag.order    { background: var(--honey-pale); color: var(--honey); }
.faq-mini-tag.delivery { background: var(--sage-pale);  color: var(--sage); }
.faq-mini-tag.product  { background: var(--terra-pale); color: var(--terra); }
.faq-mini-q { font-size: 14px; font-weight: 700; color: var(--bark); margin-bottom: 8px; line-height: 1.35; }
.faq-mini-a { font-size: 13px; color: var(--bark-light); line-height: 1.62; }

.collab-cta-section { background: var(--terra-pale); border-top: 1.5px solid var(--parchment-mid); padding: 3.5rem 0; }
.collab-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.collab-cta-text h2 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--bark); margin-bottom: .6rem; }
.collab-cta-text p { font-size: 14px; color: var(--bark-light); line-height: 1.7; }
.collab-cta-card { background: var(--bark); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.collab-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.collab-card-title { font-family: var(--font-serif); font-size: 1rem; color: white; margin-bottom: 4px; }
.collab-card-body { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 58px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .container { padding: 0 1.2rem; }
  .section { padding: 3rem 0; }

  /* Stack all grids */
  .grid-2, .grid-3, .grid-4,
  .home-hero .container,
  .story-section .container,
  .local-section .container,
  .collab-hero-inner,
  .contact-hero-inner,
  .contact-layout,
  .collab-cta-inner,
  .origin-two-col,
  .standards-two-col,
  .apply-layout,
  .faq-layout,
  .impact-grid,
  .values-grid,
  .testi-grid,
  .makers-grid,
  .partners-grid,
  .team-grid,
  .products-grid,
  .related-grid,
  .about-values-grid,
  .impact-stats,
  .steps-row,
  .contact-faq-grid { grid-template-columns: 1fr; }

  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .product-grid-area { padding-left: 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); }

  .product-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: repeat(3,1fr); height: 150px; }
  .photo-strip .ps-item:nth-child(4),
  .photo-strip .ps-item:nth-child(5) { display: none; }

  .tl-list::before { left: 26px; transform: none; }
  .tl-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .tl-item .tl-left,
  .tl-item.flip .tl-left  { display: none; }
  .tl-item .tl-right,
  .tl-item.flip .tl-right { text-align: left; padding: 6px 0 0; grid-column: 2; }
  .tl-center { grid-row: 1; grid-column: 1; align-items: flex-start; }
  .tl-dot { width: 38px; height: 38px; }

  h1.about-hero { font-size: 2rem; }
  .steps-row::before { display: none; }
  .step-card { padding: 0; text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: .8rem; align-items: start; margin-bottom: 1.5rem; }
  .step-icon { margin: 0; }
  .step-num { margin-top: 4px; }

  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }

  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .origin-pair { grid-template-columns: 1fr; }
  .photo-strip { display: none; }
}
</style>
