/* =========================================================
   HARVESTING LELAND — Global Stylesheet
   www.harvestingleland.com
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Allura&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --wheat:  #c7a35e;
  --sage:   #7e8d7a;
  --linen:  #d6cdba;
  --cream:  #f4f1ea;
  --forest: #4f5e4d;
  --ink:    #2a2a2a;
  --white:  #ffffff;
  --shadow: rgba(42, 42, 42, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Allura', cursive;
  --font-body:    'Lato', Arial, sans-serif;

  --max-w: 1160px;
  --radius: 6px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--forest);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark {
  background-color: var(--forest);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--linen { background-color: var(--linen); }
.section--cream { background-color: var(--cream); }
.text-center { text-align: center; }
.text-wheat  { color: var(--wheat); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn--wheat {
  background: var(--wheat);
  color: var(--white);
  border-color: var(--wheat);
}
.btn--wheat:hover {
  background: #b3904d;
  border-color: #b3904d;
}

.btn--outline {
  background: transparent;
  color: var(--wheat);
  border-color: var(--wheat);
}
.btn--outline:hover {
  background: var(--wheat);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--forest);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--forest:hover {
  background: #3d4d3b;
  border-color: #3d4d3b;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
  padding: 0.7rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 58px;
  width: auto;
  display: block;
  /* slightly lift logo off dark backgrounds with a soft glow */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
  transition: filter var(--transition), opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.88; }
/* On scrolled white nav, drop the shadow */
.nav.scrolled .nav__logo-img { filter: none; }

/* Script accent class — use for pull quotes, callouts */
.script {
  font-family: var(--font-script);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--wheat);
  line-height: 1.1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wheat);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--forest); }
.nav__links .btn { font-size: 0.75rem; padding: 0.5rem 1.2rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--forest); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px var(--shadow);
    transition: right var(--transition);
  }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--forest); font-size: 0.9rem; }
  .nav__toggle { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,42,42,0.45) 0%, rgba(79,94,77,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 5rem;
}
.hero__content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero logo — absolutely positioned on the right */
.hero__text { max-width: 500px; position: relative; z-index: 2; }
.hero__logo-feature {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero__logo-wrap {
  line-height: 0;
}
.hero__logo-big {
  width: min(920px, 46vw);
  display: block;
  border-radius: 50%;
  box-shadow: 0 12px 60px rgba(0,0,0,0.35), 0 4px 20px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .hero__logo-feature {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  .hero__logo-big { width: min(300px, 70vw); }
  .hero__content { text-align: center; }
  .hero__buttons { justify-content: center; }
}

/* Small page hero (non-homepage) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.6) 0%, rgba(42,42,42,0.2) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero__content h1 { color: var(--white); }
.page-hero__content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 0.5rem;
}

/* --- Section Headers --- */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: 0.4rem; }
.section-header p {
  color: #666;
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 0.75rem;
}
.section-header.center p { margin: 0.75rem auto 0; }

/* --- Divider --- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--wheat);
  margin: 1rem 0;
}
.divider--center { margin: 1rem auto; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(42,42,42,0.16);
}
.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { color: #666; font-size: 0.95rem; margin-bottom: 1.25rem; }

/* --- Product Cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(42,42,42,0.16);
}
.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 1.25rem; }
.product-card__body h4 { color: var(--forest); margin-bottom: 0.3rem; }
.product-card__body .desc { color: #777; font-size: 0.88rem; margin-bottom: 0.75rem; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--linen);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wheat);
}

/* --- Shop Tabs --- */
.shop-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--linen);
  padding-bottom: 0;
}
.shop-tab {
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: #888;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.shop-tab:hover { color: var(--wheat); }
.shop-tab.active {
  color: var(--forest);
  border-bottom-color: var(--wheat);
}

.shop-section { display: none; }
.shop-section.active { display: block; }

/* --- Category Cards (Homepage) --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .category-grid { grid-template-columns: 1fr; }
}
.category-card {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.category-card__overlay h3 { color: var(--white); margin-bottom: 0.5rem; }
.category-card__overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1rem; }

/* --- Horizontal Scroll Strip (Featured) --- */
.scroll-strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--linen) transparent;
}
.scroll-strip::-webkit-scrollbar { height: 6px; }
.scroll-strip::-webkit-scrollbar-thumb { background: var(--linen); border-radius: 3px; }
.scroll-strip .product-card { flex: 0 0 260px; }

/* --- Story / Two-Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--flip { direction: rtl; }
.two-col--flip > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--flip { direction: ltr; }
}
.two-col__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.two-col__img img { width: 100%; height: 100%; object-fit: cover; }

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,42,42,0.55);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cta-banner__content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner__content p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

/* --- Instagram Placeholder --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media (max-width: 640px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
.instagram-grid__item {
  aspect-ratio: 1;
  background: var(--linen);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1.5rem;
  overflow: hidden;
}
.instagram-placeholder {
  background: var(--linen);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--sage);
}
.instagram-placeholder p { color: #888; font-size: 0.9rem; margin-top: 0.5rem; }

/* --- Newsletter Bar --- */
.newsletter-bar {
  background: var(--forest);
  padding: 2.5rem 0;
}
.newsletter-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.newsletter-bar__text h3 { color: var(--cream); margin-bottom: 0.25rem; }
.newsletter-bar__text p { color: rgba(244,241,234,0.75); font-size: 0.9rem; }
.newsletter-bar__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-bar__form input {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(214,205,186,0.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  width: 260px;
  font-size: 0.9rem;
}
.newsletter-bar__form input::placeholder { color: rgba(244,241,234,0.5); }
.newsletter-bar__form input:focus { outline: none; border-color: var(--wheat); }
@media (max-width: 600px) {
  .newsletter-bar__inner { flex-direction: column; align-items: flex-start; }
  .newsletter-bar__form input { width: 100%; }
}

/* --- GHL Form Placeholder --- */
.form-placeholder {
  background: var(--linen);
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--forest);
}
.form-placeholder__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-placeholder h3 { margin-bottom: 0.5rem; }
.form-placeholder p { color: #777; font-size: 0.9rem; margin-bottom: 0; }
.form-placeholder code {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--sage);
  background: rgba(126,141,122,0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--linen);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--linen); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--wheat);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 1rem;
  color: var(--wheat);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--wheat);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding-bottom: 1.25rem; color: #555; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wheat);
  display: inline-block;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-item__icon {
  font-size: 1.3rem;
  color: var(--wheat);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item__text strong { display: block; color: var(--forest); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item__text a:hover { color: var(--wheat); }

.social-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  transition: border-color var(--transition), background var(--transition);
}
.social-link:hover { border-color: var(--wheat); background: rgba(199,163,94,0.08); }

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: rgba(244,241,234,0.75);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  display: block;
}
.footer__brand .logo-text span { color: var(--wheat); }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--wheat); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.footer__bottom a:hover { color: var(--wheat); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* --- Connect / Form Page --- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .connect-grid { grid-template-columns: 1fr; }
}
.connect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 2px 16px var(--shadow);
}
.connect-card h3 { margin-bottom: 0.5rem; }
.connect-card .sub { color: #777; font-size: 0.95rem; margin-bottom: 2rem; }

/* --- Stats / Values Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stat h2 { color: var(--wheat); font-size: 2.5rem; }
.stat p { color: #777; font-size: 0.9rem; margin: 0; }

/* --- Tag Badge --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--wheat { background: rgba(199,163,94,0.15); color: var(--wheat); }
.badge--sage { background: rgba(126,141,122,0.15); color: var(--sage); }
.badge--forest { background: rgba(79,94,77,0.15); color: var(--forest); }

/* --- Nav Dropdown --- */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav__caret {
  font-size: 0.55rem;
  transition: transform var(--transition);
  display: inline-block;
  margin-top: 1px;
}
.nav__dropdown:hover .nav__caret,
.nav__dropdown.open .nav__caret { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(42,42,42,0.14);
  min-width: 230px;
  /* Transparent top padding bridges the gap so hover doesn't break */
  padding: 0.6rem 0 0.4rem;
  border-top: 2px solid var(--wheat);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}
/* Invisible bridge between toggle and menu — prevents hover gap */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu li { display: block; }
.nav__dropdown-menu a {
  display: block !important;
  padding: 0.65rem 1.4rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--forest) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition) !important;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover {
  background: var(--cream);
  color: var(--wheat) !important;
}

@media (max-width: 820px) {
  .nav__dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    background: rgba(244,241,234,0.6);
    border-radius: var(--radius);
    border-top: none;
    border-left: 3px solid var(--wheat);
    margin: 0.4rem 0 0.4rem 0.75rem;
    padding: 0.25rem 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu a { padding: 0.5rem 1rem !important; }
}

/* --- Snipcart Cart Button (nav) --- */
.nav__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius);
  color: var(--white);
  transition: color var(--transition), background var(--transition);
  margin-left: 0.25rem;
  flex-shrink: 0;
}
.nav.scrolled .nav__cart-btn { color: var(--forest); }
.nav__cart-btn:hover { background: rgba(199,163,94,0.15); color: var(--wheat); }
.nav__cart-btn svg { display: block; }
.nav__cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--wheat);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 2px;
  pointer-events: none;
}

/* --- Responsive helpers --- */
@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .btn { text-align: center; }
}
