:root {
  --honey: #F4A700;
  --honey-deep: #D98F00;
  --cream: #FFF8E6;
  --charcoal: #1A1A18;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Questrial', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

/* NAV */
.nav {
  background: var(--honey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-spacer { width: 80px; flex-shrink: 0; }
.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: opacity 0.18s ease;
}
.nav-link:hover { opacity: 0.65; }
.nav-link:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-link.is-active { font-weight: 700; }
.nav-wordmark {
  font-family: 'Lemon', 'Georgia', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-left: 0.5rem;
  font-style: italic;
  font-weight: 700;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-cta {
  background: #fff;
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(26,26,24,0.1);
  transition: transform 0.15s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  box-shadow: 0 4px 14px rgba(26,26,24,0.12);
  transform: translateY(-1px);
}
.nav-cta:active { transform: translateY(0); }
.nav-cta:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}
.nav-icon {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--charcoal);
  padding: 0.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.nav-icon:hover { background: rgba(26,26,24,0.08); }
.nav-icon:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 2px;
}

/* HOMEPAGE HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(300px, 440px) 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin: 0 0 1.75rem;
  max-width: 34ch;
}
.hero-logo {
  width: 100%;
  max-width: 480px;
  justify-self: end;
}

/* PAGE HEADER (used on inner pages) */
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 2.5rem;
  text-align: left;
}
.page-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
  margin: 0 0 1rem;
  font-weight: 700;
}
.page-title {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.page-lede {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.78;
  max-width: 56ch;
  margin: 0;
  line-height: 1.65;
}

/* GENERIC SECTION CONTAINER */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 4rem;
}
.section-title {
  font-family: 'Questrial', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

/* CARD GRID (used by shop, rescue-partners, local-markets) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.card {
  background: #fff;
  border: 1px solid rgba(26,26,24,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244,167,0,0.12);
}
.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--cream);
}
.card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
  font-weight: 700;
}
.card-title {
  font-family: 'Questrial', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--charcoal);
}
.card-meta {
  font-size: 0.88rem;
  color: rgba(26,26,24,0.7);
  margin: 0;
}
.card-cta-row {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* PRIMARY BUTTON */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--honey);
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Questrial', sans-serif;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(244,167,0,0.28);
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease, background 0.18s ease;
}
.btn-primary:hover {
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(217,143,0,0.32);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}
.btn-primary.is-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
}

/* PROSE BLOCK (used by about-us) */
.prose {
  max-width: 60ch;
  margin: 0 auto;
}
.prose p {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 0 0 1.25rem;
  line-height: 1.75;
}
.prose p:last-child { margin-bottom: 0; }

/* TWO-COL BLOCK (about-us founder image + story) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* NEWSLETTER */
.newsletter {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 3rem 2.5rem 5rem;
  border-top: 1px solid rgba(26,26,24,0.08);
}
.newsletter-title {
  font-family: 'Questrial', sans-serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.newsletter-input {
  width: 100%;
  border: 1px solid rgba(26,26,24,0.18);
  padding: 0.95rem 1.25rem;
  font-size: 0.95rem;
  font-family: 'Questrial', sans-serif;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.newsletter-input:focus {
  border-color: var(--honey-deep);
  box-shadow: 0 0 0 3px rgba(244,167,0,0.18);
}
.newsletter-input::placeholder { color: rgba(26,26,24,0.5); }
.newsletter-submit {
  background: var(--honey);
  color: var(--charcoal);
  border: 0;
  padding: 0.95rem 1.75rem;
  font-family: 'Questrial', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.newsletter-submit:hover {
  background: var(--honey-deep);
  transform: translateY(-1px);
}
.newsletter-submit:active { transform: translateY(0); }
.newsletter-submit:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}
.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.newsletter-fineprint {
  font-size: 0.78rem;
  color: rgba(26,26,24,0.55);
  margin: 0.85rem 0 0;
  max-width: 480px;
  line-height: 1.5;
}
.newsletter-fineprint a { color: rgba(26,26,24,0.7); text-decoration: underline; }
.newsletter-status {
  font-size: 0.85rem;
  margin-top: 0.85rem;
  min-height: 1.2em;
}
.newsletter-status.success { color: #2a7d2e; }
.newsletter-status.error { color: #b03030; }

/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem 1rem 3rem;
  color: rgba(26,26,24,0.5);
  font-size: 0.78rem;
}
.footer-square {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(26,26,24,0.5);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-square::after {
  content: '';
  width: 8px;
  height: 8px;
  background: rgba(26,26,24,0.5);
  border-radius: 1px;
}

/* TEXT US FLOAT */
.text-us {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(26,26,24,0.18);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(26,26,24,0.08);
  transition: transform 0.18s ease;
  z-index: 60;
}
.text-us:hover { transform: translateY(-2px); }
.text-us svg { width: 16px; height: 16px; }

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav { padding: 0 1rem; height: 64px; gap: 0.5rem; }
  .nav-spacer { display: none; }
  .nav-center { gap: 0.9rem; overflow-x: auto; }
  .nav-link { font-size: 0.82rem; white-space: nowrap; }
  .nav-wordmark { font-size: 1.1rem; }
  .nav-right { gap: 0.5rem; }
  .nav-cta { padding: 0.4rem 1rem; font-size: 0.82rem; }
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem 2rem;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-logo { max-width: 320px; justify-self: center; }
  .page-header { padding: 3rem 1.25rem 1.5rem; }
  .section { padding: 1.5rem 1.25rem 3rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter { padding: 2.25rem 1.25rem 3.5rem; }
  .newsletter-row { grid-template-columns: 1fr; }
}
