:root {
  --green-dark: #1c5c38;
  --green: #2c7049;
  --green-deep: #0b5c34;
  --orange: #e0691b;
  --orange-bright: #f37720;
  --sage: #d9ead2;
  --sage-light: #eef7ea;
  --cream: #fffaf3;
  --ink: #1e2b23;
  --ink-soft: #4a5a4f;
  --white: #ffffff;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 16px 40px rgba(28, 92, 56, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 0.6em;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(224, 105, 27, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(224, 105, 27, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--sage);
  padding: 0.6em 1.3em;
  font-size: 0.95rem;
}
.btn-outline:hover { border-color: var(--green-deep); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 92, 56, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.brand img { height: 76px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
}
.main-nav a:hover { color: var(--orange); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--green-deep);
  border-radius: 2px;
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224,105,27,0.10), transparent 55%),
    linear-gradient(180deg, var(--sage-light) 0%, var(--sage) 100%);
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero-inner {
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.6em;
}

/* Trust strip */
.trust-strip {
  background: var(--green-deep);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-light);
}
.trust-item p { margin: 0; font-size: 0.95rem; }
.trust-item strong { color: var(--white); }
.trust-icon { font-size: 1.6rem; flex: none; }

/* Products */
.products { padding: 88px 0 60px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { text-align: center; }

.range-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 0;
  margin: 40px 0 22px;
}
.range-heading::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.range-heading--veg::before { background: var(--green); }
.range-heading--fruit::before { background: var(--orange); }
.range-heading:first-of-type { margin-top: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid--fruit {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(28,92,56,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-card:hover { transform: translateY(-4px); }
.product-card--soon:hover { box-shadow: 0 20px 40px rgba(224, 105, 27, 0.28); }

.product-image {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  height: 240px;
}
.product-image img { height: 100%; width: auto; object-fit: contain; }

.product-body { padding: 18px 20px 24px; }
.product-body h4 { margin-bottom: 0.25em; }
.product-desc { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 0.6em; }
.product-sizes {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--green);
  font-size: 0.95rem;
  margin: 0;
}

.nutrition-link {
  display: inline-block;
  margin-top: 0.6em;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-card:hover .nutrition-link { color: var(--orange); }

.product-card--soon .product-image img { opacity: 0.94; }
.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(224, 105, 27, 0.35);
}

.bulk-note {
  text-align: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px dashed rgba(28,92,56,0.2);
  color: var(--ink-soft);
  font-style: italic;
}

/* Product detail pages */
.product-hero { background: var(--sage-light); padding: 40px 0 70px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  margin-bottom: 32px;
}
.back-link:hover { color: var(--orange); }

.product-detail-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.product-detail-image {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.product-detail-image img { max-height: 420px; width: auto; object-fit: contain; }

.product-detail-body .eyebrow { }
.product-detail-body h1 { margin-bottom: 0.3em; }
.product-detail-sizes {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  font-size: 1.15rem;
  margin: 0.6em 0;
}
.product-claim {
  display: inline-block;
  background: var(--sage);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.4em 1em;
  border-radius: 999px;
  margin: 0.4em 0.5em 0.4em 0;
}
.hsr-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0.4em 0.5em 0.4em 0;
}
.hsr-note strong { color: var(--green-deep); font-family: var(--font-display); font-size: 1.1rem; }

.product-detail-actions { margin-top: 1.6em; display: flex; gap: 16px; flex-wrap: wrap; }

.nutrition-section { padding: 70px 0 90px; }
.nutrition-section .section-head { margin-bottom: 40px; }
.nutrition-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  text-align: center;
}
.nutrition-card img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.nutrition-note {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 0;
}
.nutrition-note strong { font-style: normal; color: var(--ink); }

.nutrition-table-wrap {
  overflow-x: auto;
}
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 8px;
}
.nutrition-table caption {
  text-align: left;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.nutrition-table th, .nutrition-table td {
  padding: 0.6em 0.5em;
  border-bottom: 1px solid rgba(28,92,56,0.12);
  font-size: 0.94rem;
}
.nutrition-table thead th {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-weight: 700;
}
.nutrition-table tbody th { font-weight: 600; color: var(--ink); }
.nutrition-table tbody tr:last-child th,
.nutrition-table tbody tr:last-child td { border-bottom: none; }
.nutrition-table .indent { padding-left: 1.4em; color: var(--ink-soft); }

/* Why section */
.why { background: var(--sage-light); padding: 80px 0; }
.why-copy--centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.why-copy--centered .eyebrow { text-align: center; }
.why-copy--centered p:not(.eyebrow) { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

.recipes-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.recipes-head .eyebrow { text-align: center; }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--orange);
  display: flex;
  flex-direction: column;
}
.recipe-eyebrow {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.3em;
}
.recipe-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1em; }
.recipe-card ol { padding-left: 1.2em; color: var(--ink-soft); margin: 0; }
.recipe-card li { margin-bottom: 0.5em; }
.recipe-also {
  margin: 1em 0 0;
  padding-top: 1em;
  border-top: 1px dashed rgba(28,92,56,0.2);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
}

/* Wholesale */
.wholesale {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  padding: 80px 0;
  color: var(--white);
}
.wholesale h2, .wholesale .eyebrow { color: var(--white); }
.wholesale p { color: rgba(255,255,255,0.88); max-width: 56ch; }
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.wholesale-copy { padding-top: 12px; }

/* Contact */
.contact { background: var(--sage-light); padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy { padding-top: 12px; }
.contact-copy p:not(.eyebrow) { color: var(--ink-soft); max-width: 46ch; }
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.4em;
}
.contact-link {
  display: inline-block;
  color: var(--green-deep);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-decoration: none;
}
.contact-link:hover { color: var(--orange); }

/* Form cards (shared by wholesale + contact) */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow-soft);
}
.form-card h3 { color: var(--green-deep); margin-bottom: 0.8em; }
.form-card--dark {
  background: rgba(255,255,255,0.06);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.form-card--dark h3 { color: var(--white); }

.wix-form-loading { color: var(--ink-soft); font-style: italic; margin: 0; }
.form-card--dark .wix-form-loading { color: rgba(255,255,255,0.7); }

.wix-form { display: flex; flex-direction: column; gap: 16px; }
.wix-form-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; }
.wix-form-label { font-weight: 700; color: var(--ink); }
.form-card--dark .wix-form-label { color: var(--white); }
.wix-form-control {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7em 0.9em;
  border-radius: 12px;
  border: 1.5px solid rgba(28,92,56,0.18);
  background: var(--sage-light);
  color: var(--ink);
  resize: vertical;
}
.wix-form-control:focus {
  outline: none;
  border-color: var(--orange);
}
.form-card--dark .wix-form-control {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.form-card--dark .wix-form-control::placeholder { color: rgba(255,255,255,0.55); }
.wix-form-error {
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1.1em;
}
.form-card--dark .wix-form-error { color: #ffd4c2; }
.wix-form-submit { margin-top: 4px; align-self: flex-start; }
.wix-form-submit:disabled { opacity: 0.6; cursor: wait; }
.wix-form-status { margin: 0.4em 0 0; font-weight: 700; }
.wix-form-status--success { color: var(--green-deep); }
.form-card--dark .wix-form-status--success { color: #b9f6c9; }
.wix-form-status--error { color: #c0392b; }
.form-card--dark .wix-form-status--error { color: #ffd4c2; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.footer-logo { height: 70px; width: auto; }
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 980px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .wholesale-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--fruit { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .product-grid--fruit { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-grid--fruit { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nutrition-card { padding: 24px 16px; }
  .product-detail-actions { flex-direction: column; align-items: stretch; }
}
