/* ============================================
   HERITAGE FARMS INC — Main Stylesheet
   Wholesale Nursery | Boynton Beach, FL
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-deep:    #1a3a2a;
  --green-mid:     #2d5a3d;
  --green-accent:  #3d7a52;
  --green-light:   #5a9e6f;
  --gold:          #c8a84b;
  --gold-light:    #e8c97a;
  --cream:         #f7f4ee;
  --white:         #ffffff;
  --gray-light:    #f0ede6;
  --gray-mid:      #8a8278;
  --text-dark:     #1c2118;
  --text-body:     #3d3d35;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;

  --max-width:     1200px;
  --section-pad:   80px 24px;
  --radius:        4px;
  --transition:    0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--dark { background: var(--green-deep); color: var(--cream); }
.section--cream { background: var(--cream); }
.section--gray { background: var(--gray-light); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--dark .section-title { color: var(--cream); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 580px;
  line-height: 1.75;
}

.section--dark .section-subtitle { color: rgba(247,244,238,0.72); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--green {
  background: var(--green-mid);
  color: var(--cream);
}
.btn--green:hover { background: var(--green-accent); }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.logo-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  background: var(--green-deep) !important;
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: var(--cream) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: var(--green-deep);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(61,122,82,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,168,75,0.08) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  color: rgba(247,244,238,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.55);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  aspect-ratio: 4/5;
  background: var(--green-mid);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-accent) 100%);
  color: rgba(247,244,238,0.4);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 12px;
}

.hero-img-placeholder svg { opacity: 0.3; }

.hero-tag {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag-icon {
  width: 36px; height: 36px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-tag-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}

.hero-tag-sub {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 400;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gold);
  padding: 14px 24px;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}

.trust-dot { width: 4px; height: 4px; background: var(--green-deep); border-radius: 50%; opacity: 0.4; }

/* ---- ABOUT STRIP ---- */
.about-strip {
  padding: 80px 24px;
}

.about-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pledge-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pledge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.pledge-icon {
  width: 22px; height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pledge-icon svg { color: white; }

.about-img-block {
  position: relative;
}

.about-img-main {
  aspect-ratio: 3/4;
  background: var(--green-mid);
  border-radius: 8px;
  overflow: hidden;
}

.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-mid), var(--green-accent));
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-card {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.about-card-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-card-text {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.6);
  margin-top: 4px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card-img {
  aspect-ratio: 4/3;
  background: var(--green-mid);
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.product-card-body {
  padding: 22px 24px 24px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.product-card-latin {
  font-size: 12px;
  font-style: italic;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--gray-light);
  color: var(--text-body);
  padding: 3px 10px;
  border-radius: 100px;
}

.product-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.product-card-link:hover { gap: 10px; color: var(--green-mid); }

/* ---- WHY WHOLESALE ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  padding: 32px;
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.why-icon {
  width: 48px; height: 48px;
  background: rgba(200,168,75,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(247,244,238,0.65);
  line-height: 1.75;
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.09); }

.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--green-mid);
  overflow: hidden;
}

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

.blog-card-body { padding: 24px; }

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-read-more:hover { gap: 10px; }

/* ---- CONTACT ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(200,168,75,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
}

.contact-info-value a { color: var(--gold); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus { border-color: var(--green-accent); background: var(--white); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #edf7f0;
  border: 1px solid #5a9e6f;
  color: var(--green-deep);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111a14;
  padding: 60px 24px 32px;
  color: rgba(247,244,238,0.6);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-logo-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(247,244,238,0.55);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(247,244,238,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cream); }

.footer-contact-item {
  font-size: 14px;
  color: rgba(247,244,238,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-item a { color: var(--gold); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247,244,238,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(247,244,238,0.45); }
.footer-bottom a:hover { color: var(--cream); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--green-deep);
  padding: 72px 24px 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(61,122,82,0.2) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(247,244,238,0.45);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.breadcrumb a { color: rgba(247,244,238,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.35; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(247,244,238,0.68);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.product-gallery { position: sticky; top: 90px; }

.product-gallery-main {
  aspect-ratio: 1;
  background: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.product-latin-name {
  font-size: 15px;
  font-style: italic;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.product-description {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.product-specs-table tr { border-bottom: 1px solid var(--gray-light); }
.product-specs-table td { padding: 11px 0; font-size: 14px; }
.product-specs-table td:first-child {
  font-weight: 600;
  color: var(--green-deep);
  width: 38%;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-specs-table td:last-child { color: var(--text-body); }

.product-uses {
  background: var(--cream);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.product-uses-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.uses-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uses-list li {
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.uses-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.wholesale-cta-box {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 8px;
  padding: 28px;
}

.wholesale-cta-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wholesale-cta-text {
  font-size: 14px;
  color: rgba(247,244,238,0.68);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---- BLOG POST ---- */
.blog-post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

.blog-post-meta .blog-cat { margin-bottom: 0; }

.blog-post-img {
  aspect-ratio: 16/9;
  background: var(--green-mid);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-post-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--green-deep);
  margin: 36px 0 14px;
}

.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin: 28px 0 10px;
}

.blog-post-body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.blog-post-body ul, .blog-post-body ol {
  margin: 0 0 20px 24px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}

.blog-post-body li { margin-bottom: 6px; }

.blog-cta-inline {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.blog-cta-sub {
  font-size: 14px;
  color: rgba(247,244,238,0.65);
  margin-top: 4px;
}

/* ---- RESPONSIVE ---- */
/* ============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-img-block { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  /* About stats row on about page */
  .about-stats-row { grid-template-columns: repeat(2, 1fr) !important; }

  /* Products grid — 2 col on tablet */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog grid — 2 col on tablet */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why cards — reduce padding */
  .why-card { padding: 24px; }

  /* Contact form wrap */
  .contact-form-wrap { padding: 28px 24px; }

  /* Product specs table */
  .product-specs-table td:first-child { width: 45%; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================ */
@media (max-width: 640px) {

  /* --- NAV --- */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
  }
  .nav-links.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius);
  }
  .nav-toggle { display: flex; }

  /* --- HEADER --- */
  .header-inner {
    height: 64px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .logo {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo img { height: 36px; }
  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }
  nav { display: none; }
  nav.open { display: block; }

  /* --- SECTION PADDING --- */
  .section { padding: 52px 20px; }
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .page-hero-sub { font-size: 15px; }

  /* --- HERO --- */
  .hero { min-height: auto; }
  .hero-inner { padding: 52px 20px 48px; gap: 32px; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); margin-bottom: 16px; }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 16px 24px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
  }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 11px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-tag { display: none; }

  /* --- TRUST BAR --- */
  .trust-bar { padding: 12px 20px; }
  .trust-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .trust-item { justify-content: center; }
  .trust-dot { display: none; }
  .trust-item { font-size: 13px; }

  /* --- ABOUT SECTION --- */
  .about-body { font-size: 15px; }
  .pledge-list { margin: 20px 0; }
  .pledge-item { font-size: 14px; }

  /* --- STATS ROW (about page) --- */
  .about-stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }

  /* --- PRODUCTS GRID --- */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card-body { padding: 18px 20px 20px; }
  .product-card-name { font-size: 18px; }

  /* --- PRODUCT DETAIL --- */
  .product-detail { padding: 40px 20px; gap: 32px; }
  .product-title { font-size: clamp(24px, 7vw, 36px); }
  .product-uses { padding: 18px; }
  .wholesale-cta-box { padding: 22px; }
  .wholesale-cta-box .btn { width: 100%; text-align: center; margin-bottom: 8px; }

  /* --- WHY GRID --- */
  .why-grid { gap: 16px; }
  .why-card { padding: 22px 20px; }
  .why-title { font-size: 18px; }

  /* --- BLOG GRID --- */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-title { font-size: 17px; }
  .blog-cta-inline { flex-direction: column; gap: 16px; }
  .blog-cta-inline .btn { width: 100%; text-align: center; }

  /* --- BLOG POST --- */
  .blog-post-wrap { padding: 40px 20px; }
  .blog-post-body h2 { font-size: 22px; }
  .blog-post-body h3 { font-size: 18px; }
  .blog-post-body p, .blog-post-body li { font-size: 15px; }

  /* --- CONTACT --- */
  .contact-wrap { padding: 0 20px; }
  .contact-form-wrap { padding: 24px 20px; border-radius: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 20px; }
  .contact-info-item { gap: 12px; }

  /* --- FOOTER --- */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 48px 20px 28px; }
  .footer-logo-name { font-size: 18px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 11px;
  }

  /* --- SECTION TITLES --- */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-subtitle { font-size: 15px; }

  /* --- BUTTONS --- */
  .btn { font-size: 12px; padding: 13px 24px; }

  /* --- PRICE BAR --- */
  .pricebar-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px; }
  .pricebar-text { font-size: 13px; }

  /* --- BREADCRUMB --- */
  .breadcrumb { font-size: 11px; }

  /* --- SPEC CHIPS --- */
  .product-card-specs { gap: 4px; }
  .spec-chip { font-size: 10px; padding: 3px 8px; }

  /* --- INLINE CTAs on product pages --- */
  .wholesale-cta-box > div[style*="display:flex"] { flex-direction: column; }

  /* --- About page pledge cards --- */
  .pledge-list li span { font-size: 14px; line-height: 1.6; }
}

/* ---- PRICE SHEET BAR ---- */
.pricebar {
  background: var(--green-mid);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricebar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pricebar-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,244,238,0.9);
  line-height: 1.4;
}

.pricebar-text svg { flex-shrink: 0; color: var(--gold); }
.pricebar-text strong { color: var(--cream); }

.pricebar-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}

.pricebar-btn:hover { background: var(--gold-light); }

@media (max-width: 600px) {
  .pricebar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---- FIELD GROWN BADGE ---- */
.badge-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.badge-field::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Mobile CTA button rows */
@media (max-width: 640px) {
  .cta-btn-row { flex-direction: column; }
  .cta-btn-row .btn { width: 100%; text-align: center; }

  /* Homepage section CTAs */
  .section--dark .container > div[style*="display:flex"] { flex-wrap: wrap; }

  /* Product detail uses list */
  .uses-list li { font-size: 14px; }

  /* Product specs */
  .product-specs-table td { padding: 9px 0; font-size: 13px; }
  .product-specs-table td:first-child { font-size: 11px; width: 42%; }

  /* Blog post meta */
  .blog-post-meta { flex-wrap: wrap; gap: 6px; font-size: 12px; }

  /* Page hero breadcrumb */
  .breadcrumb { flex-wrap: wrap; }

  /* Why section dark --- ensure single col CTA buttons stack */
  .section--dark .btn + .btn { margin-top: 0; }

  /* Ensure contact info section has enough breathing room */
  .contact-info-value { font-size: 15px; }
  .contact-info-label { font-size: 10px; }

  /* Trust bar items wrap cleanly */
  .trust-bar-inner { align-items: flex-start; }

  /* Form controls larger tap targets */
  .form-control { padding: 14px 16px; font-size: 16px; } /* 16px prevents iOS zoom */
  select.form-control { font-size: 16px; }

  /* Eyebrow text */
  .eyebrow { font-size: 10px; }
}

/* Fix 5: Reduce contact page top padding on mobile */
@media (max-width: 640px) {
  .contact-section { padding-top: 36px !important; }
  .contact-section .contact-wrap > div:first-child { padding-top: 0; }
  .contact-section h2.section-title { margin-top: 8px; margin-bottom: 24px; }
}
