/* ============================================================
   FOURTH SOIL FARM — styles.css
   Palette (matches original site):
     --teal-dark:    #0d4030  (headings)
     --near-black:   #111111  (nav bg)
     --green-cta:    #22a822  (bright green CTA buttons)
     --green-cta-dk: #1a8a1a  (CTA hover)
     --white:        #ffffff  (main bg)
     --gray-bg:      #f7f7f5  (soft alternating section bg)
     --border:       #eaeaea  (hairline borders)
     --text:         #2c2c2c  (body text)
     --text-muted:   #666666  (secondary text)
   ============================================================ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #2c2c2c;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }

a { color: #1a8a1a; text-decoration: none; }
a:hover { color: #0d4030; text-decoration: underline; }
a:focus-visible { outline: 2px solid #22a822; outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: #0d4030;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ---- Layout Utilities ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section-tinted { background: #f7f7f5; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a8a1a;
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: #666666;
  margin-top: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #22a822;
  color: #fff;
  border-color: #22a822;
}
.btn-primary:hover { background: #1a8a1a; border-color: #1a8a1a; color: #fff; }

.btn-outline {
  background: transparent;
  color: #0d4030;
  border-color: #0d4030;
}
.btn-outline:hover { background: #0d4030; color: #fff; }

.btn-nav {
  background: #22a822;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}
.btn-nav:hover { background: #1a8a1a; color: #fff !important; }

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  background: #22a822;
  color: #fff;
  border-color: #22a822;
}
.btn-small:hover { background: #1a8a1a; border-color: #1a8a1a; color: #fff; }

.btn-block { display: block; width: 100%; text-align: center; }

.btn-cta {
  display: block;
  padding: 1rem 1.5rem;
  text-align: center;
  background: #22a822;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.btn-cta:hover { background: #1a8a1a; color: #fff; text-decoration: none; }
.btn-cta-title { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.btn-cta-sub { font-size: 0.85rem; font-weight: 500; opacity: 0.92; margin-top: 0.2rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111111;
  border-bottom: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo:hover { color: #22a822; text-decoration: none; }
.nav-logo-leaf { font-size: 1.3rem; color: #22a822; }
.nav-logo-img { height: 32px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: #fff;
}
.nav-links a:hover { color: #22a822; text-decoration: none; }

.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: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---- Hero (full-bleed background photo, text card right) ---- */
.hero-split {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-split > .container { width: 100%; }

.hero-split-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-mason-jar.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  background: rgba(255,255,255,0.94);
  padding: 2.25rem 2.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.18);
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a8a1a;
  margin-bottom: 1rem;
}

.hero-headline {
  color: #0d4030;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 1.5rem;
}
.hero-sub strong { color: #0d4030; }

.checklist { margin-bottom: 1.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.3rem 0;
  font-size: 1.02rem;
  color: #2c2c2c;
}
.checklist li::before {
  content: '\2713';
  color: #22a822;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-actions .btn-cta { max-width: 380px; }

/* ---- About ---- */
.about-greeting {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #0d4030;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.about-photo-wrap {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.about-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-image-placeholder {
  background: #eef5e6;
  border: 2px dashed #8fba5a;
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #1a8a1a;
  font-size: 3rem;
  text-align: center;
}
.about-image-placeholder p {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #1a8a1a;
  margin: 0;
}
.about-image-placeholder small { font-size: 0.75rem; opacity: 0.7; }

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.about-text p { color: #333333; font-size: 1.02rem; }

/* ---- What Are Microgreens ---- */
.comparison-photo-wrap {
  max-width: 720px;
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.comparison-photo-wrap img { width: 100%; }

.comparison-photo-placeholder {
  background: #f0ede4;
  border: 2px dashed #c9b99a;
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #8a7a5a;
  font-size: 2.5rem;
  text-align: center;
}
.comparison-photo-placeholder p {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #8a7a5a;
  margin: 0;
}
.comparison-photo-placeholder small { font-size: 0.75rem; opacity: 0.7; }

.why-healthier { max-width: 640px; margin: 2.5rem auto 0; }
.why-healthier h3 { text-align: center; margin-bottom: 1.5rem; }

/* ---- CTA Banner (full-width) ---- */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: #0d4030;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,64,48,0.85) 0%, rgba(13,64,48,0.65) 100%),
    url('images/grow-room.jpg') center/cover no-repeat;
}
.cta-banner--pale { background: #eef5e6; }
.cta-banner--pale .cta-banner-bg {
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(13,64,48,0.03) 40px, rgba(13,64,48,0.03) 80px);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner--pale h2 { color: #0d4030; }
.cta-banner-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.cta-banner--pale .cta-banner-tagline { color: #333333; }

.cta-banner .btn-cta { max-width: 420px; margin: 0 auto; }

/* ---- Products (photo grid) ---- */
.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-photo-card { text-align: center; }

.product-photo {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder color per variety */
.product-photo--broccoli { background: linear-gradient(135deg, #c8e6a0, #8fba5a); }
.product-photo--pea      { background: linear-gradient(135deg, #b8e4b0, #6aad78); }
.product-photo--sunflower{ background: linear-gradient(135deg, #f0dc8c, #c9a830); }
.product-photo--radish   { background: linear-gradient(135deg, #f5b8c4, #d96a7a); }
.product-photo--zippy    { background: linear-gradient(135deg, #e8c4d8, #a04870); }
.product-photo--crunchy  { background: linear-gradient(135deg, #f0e0b0, #c8a050); }

.product-photo-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.product-photo-weight {
  font-size: 0.82rem;
  color: #666666;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.product-photo-desc {
  font-size: 0.88rem;
  color: #4a4a4a;
  margin-bottom: 0.75rem;
}
.product-photo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.product-price {
  font-weight: 700;
  font-size: 1rem;
  color: #0d4030;
}

/* ---- Full Catalog ---- */
.catalog-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.catalog-header h2 {
  margin-bottom: 0.75rem;
}
.catalog-header p {
  font-size: 0.98rem;
  color: #5a5a5a;
}

.catalog-teaser {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #5a5a5a;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.catalog-row {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.catalog-row:nth-child(odd) { border-right: 1px solid #eaeaea; }
.catalog-row:nth-last-child(-n+2) { border-bottom: none; }

.catalog-row-main {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.catalog-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0d4030;
}
.catalog-weight {
  font-size: 0.78rem;
  color: #666666;
  font-style: italic;
}
.catalog-desc {
  font-size: 0.85rem;
  color: #5a5a5a;
  line-height: 1.5;
}
.catalog-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a8a1a;
  margin-top: 0.15rem;
  display: inline-block;
}
.catalog-cta:hover { color: #0d4030; text-decoration: underline; }

.products-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: #f7f7f5;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  font-size: 0.95rem;
}

/* ---- Food Uses ---- */
.food-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.food-use-card { text-align: center; }
.food-use-photo {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  background: #eef5e6;
}
.food-use-photo img { width: 100%; height: 100%; object-fit: cover; }
.food-use-photo-placeholder {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.food-use-card h4 { font-size: 1rem; }

.food-uses-note {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: #333333;
  font-style: italic;
}

/* ---- Subscribe ---- */
.subscribe { background: #ffffff; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border: 2px solid #eaeaea;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border-color: #22a822;
  box-shadow: 0 4px 20px rgba(34,168,34,0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22a822;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}
.plan-amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #0d4030;
  line-height: 1;
}
.plan-cadence {
  font-size: 0.95rem;
  color: #666666;
}
.plan-was {
  font-size: 0.83rem;
  color: #666666;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-features li {
  padding: 0.35rem 0;
  font-size: 0.93rem;
  padding-left: 1.4rem;
  position: relative;
  color: #3a3a3a;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22a822;
  font-weight: 700;
}

.plan-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #666666;
  text-align: center;
}

.subscribe-market {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: #f7f7f5;
  border-radius: 6px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.93rem;
}
.subscribe-market span { margin-right: 0.4rem; }

/* ---- Order Form (order.html) ---- */
.order-form { background: #ffffff; }

.order-step { max-width: 640px; margin: 0 auto; }

.order-fieldset-legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a8a1a;
  margin-bottom: 0.9rem;
  padding: 0;
  border: none;
}

.order-type-group {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-type-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.order-type-option:has(input:checked) {
  border-color: #22a822;
  background: #f3fbf3;
}
.order-type-option input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: #22a822;
  flex-shrink: 0;
}
.order-type-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.order-type-label strong { color: #0d4030; font-size: 1rem; }
.order-type-label span { font-size: 0.88rem; color: #5a5a5a; }

.order-panel {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.order-panel-note {
  font-size: 0.93rem;
  color: #4a4a4a;
  margin: 0;
}

.combo-rows { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.combo-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: end;
}
.combo-row .form-group { margin-bottom: 0; }
.combo-row-remove {
  background: none;
  border: 1.5px solid #cccccc;
  border-radius: 4px;
  color: #b33a2a;
  font-size: 0.85rem;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  height: fit-content;
}
.combo-row-remove:hover { background: #fdf0ee; border-color: #b33a2a; }

.btn-small-add {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.bulk-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
}
.form-group--qty input { width: 100%; }

.order-price-display {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: #eef5e6;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #0d4030;
  font-weight: 600;
}
.order-price-amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  color: #0d4030;
}

.order-fee-note {
  font-size: 0.82rem;
  color: #8a6d3b;
  background: #fdf6e8;
  border: 1px solid #eddfb8;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin: -0.75rem 0 1.5rem;
}

.upsell-card {
  background: #fff;
  border: 2px solid #22a822;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(34,168,34,0.12);
}
.upsell-card h2 { margin-bottom: 1.25rem; }

.upsell-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 0.75rem;
}
.upsell-compare strong { color: #0d4030; font-size: 1.1rem; }
.upsell-arrow { color: #22a822; font-weight: 700; }

.upsell-savings {
  font-size: 0.95rem;
  color: #1a8a1a;
  margin-bottom: 1.75rem;
}
.upsell-savings strong { font-weight: 700; }

.cadence-group {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.cadence-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.93rem;
  color: #2c2c2c;
  cursor: pointer;
}
.cadence-option input { accent-color: #22a822; }

.upsell-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.order-reassurance {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 1rem;
}

.order-back-link {
  background: none;
  border: none;
  color: #1a8a1a;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.order-back-link:hover { color: #0d4030; text-decoration: underline; }

/* ---- Ordering / Closing ---- */
.ordering { background: #ffffff; }
.ordering-text {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.ordering-text p { color: #333333; font-size: 1.02rem; }

.closing {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.closing-signoff {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 0.25rem;
}
.closing-names {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  color: #0d4030;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.closing-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.closing-photo img { width: 100%; height: 100%; object-fit: cover; }
.closing-photo-placeholder {
  background: #eef5e6;
  border: 2px dashed #8fba5a;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1a8a1a;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: #5a5a5a; margin-bottom: 1.5rem; }

.contact-details {
  margin-bottom: 2rem;
}
.contact-details li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 0.93rem;
  align-items: flex-start;
}
.contact-label {
  font-weight: 600;
  color: #0d4030;
  min-width: 72px;
  flex-shrink: 0;
  padding-top: 0.05rem;
}

.contact-social {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a8a1a;
}
.social-link:hover { color: #0d4030; text-decoration: none; }

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  border: 1px solid #eaeaea;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d4030;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #cccccc;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #2c2c2c;
  background: #fafafa;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22a822;
  box-shadow: 0 0 0 3px rgba(34,168,34,0.15);
}

.form-group textarea { resize: vertical; }

.form-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  min-height: 1.4em;
  text-align: center;
}
.form-status.success { color: #1a8a1a; }
.form-status.error   { color: #b33a2a; }

/* ---- Site Footer ---- */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-logo-img { height: 24px; width: auto; display: block; }
.footer-tagline { font-size: 0.85rem; opacity: 0.7; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.footer-nav a:hover { color: #fff; text-decoration: none; }

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social a {
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-social a:hover { color: #22a822; }

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  opacity: 0.55;
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}
.footer-bottom a:hover { color: #22a822; }
.footer-bottom p { margin-bottom: 0.35rem; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-legal { opacity: 0.85; }

/* ---- References Section (index.html) ---- */
.references-list {
  max-width: 720px;
  margin: 0 auto;
}
.references-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid #e8dcc8;
}
.references-list li:last-child { border-bottom: none; }
.references-list a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d4030;
  margin-bottom: 0.2rem;
}
.references-list a:hover { color: #1a8a1a; }
.references-source {
  display: block;
  font-size: 0.8rem;
  color: #6b6b6b;
  font-style: italic;
}

/* ---- Success Page ---- */
.success { background: #ffffff; }
.success-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #f7f7f5;
  border: 2px solid #22a822;
  border-radius: 12px;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #22a822;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.success-card h1 { margin-bottom: 1rem; }
.success-message {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 1.25rem;
}
.success-note {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-bottom: 2rem;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.success-actions .btn { min-width: 180px; }

/* ---- Legal Pages (Privacy / Terms) ---- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 {
  margin-bottom: 1.5rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
}
.legal-content p {
  color: #3a3a3a;
  margin-bottom: 1rem;
}
.legal-list {
  margin: 0 0 1.25rem;
  padding-left: 0;
}
.legal-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: #3a3a3a;
  font-size: 0.98rem;
  line-height: 1.6;
}
.legal-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.2rem;
  color: #22a822;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 3.5rem 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #111111;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-nav { width: fit-content; }

  /* Hero — stacked: photo strip on top, opaque card below (no overlay/blur) */
  .hero-split {
    padding: 0 0 3rem;
    min-height: 0;
    display: block;
  }
  .hero-split-bg {
    position: static;
    height: 240px;
    background: url('images/hero-mason-jar.jpg') center/cover no-repeat;
  }
  .hero-content {
    position: static;
    margin: -1.5rem auto 0;
    max-width: 100%;
    padding: 1.75rem;
    background: rgba(255,255,255,0.94);
    border-radius: 12px;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-social { flex-direction: row; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .product-photo-grid { grid-template-columns: 1fr 1fr; }
  .food-use-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.25rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-row:nth-child(odd) { border-right: none; }
  .catalog-row:nth-last-child(-n+2) { border-bottom: 1px solid #eaeaea; }
  .catalog-row:last-child { border-bottom: none; }
  .combo-row { grid-template-columns: 1fr; }
  .bulk-row { grid-template-columns: 1fr; }
  .cadence-group { flex-direction: column; align-items: center; gap: 0.6rem; }
  .upsell-card { padding: 1.5rem 1.25rem; }
}
