/* ═══════════════════════════════════════════════════════
   CHRISTIAN CONDIMENTS — wholesome grocery Americana
   meets church bulletin. Played completely straight.
   ═══════════════════════════════════════════════════════ */

:root {
  --parchment: #FAF6EC;
  --parchment-dark: #F1E9D6;
  --ink: #241F1C;
  --burgundy: #7B2D26;
  --gold: #C9A227;
  --green: #35513B;
  --ketchup: #B33A2B;
  --mustard-c: #C99B1D;
  --display: "Fraunces", serif;
  --body: "Lora", serif;
}

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

body {
  font-family: var(--body);
  background:
    radial-gradient(rgba(36,31,28,.045) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--parchment);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

::selection { background: var(--gold); color: var(--ink); }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--parchment);
  background: var(--burgundy);
  text-decoration: none;
  padding: .75em 1.7em;
  border-radius: 4px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(36,31,28,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(36,31,28,.3); }

/* ── Sticky nav ──────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1.5rem;
  background: var(--parchment);
  border-bottom: 1px solid rgba(36,31,28,.18);
}
.nav-wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--burgundy);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-wordmark:hover { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: .1em;
  transition: border-color .15s ease, color .15s ease;
}
.nav-links a:hover {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 4.2rem;
  border-bottom: 3px double var(--burgundy);
}
.hero-ornament, .footer-ornament, .divider {
  color: var(--gold);
  letter-spacing: .9em;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}
.divider {
  text-align: center;
  margin: 0;
  padding: 1.6rem 1.5rem 0;
  letter-spacing: .9em;
}
.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: .98;
  color: var(--burgundy);
  letter-spacing: .005em;
}
.hero-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
  color: var(--green);
  margin: 1.1rem 0 .4rem;
}
.hero-sub { color: rgba(36,31,28,.75); margin-bottom: 1.8rem; }

/* ── Mission ─────────────────────────────────────────── */
.mission { max-width: 620px; margin: 0 auto; padding: 3.6rem 1.5rem .6rem; text-align: center; }
.mission-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

/* ── Story ───────────────────────────────────────────── */
.story {
  max-width: 620px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem .6rem;
  text-align: center;
}
.story .section-title { margin-bottom: 1.2rem; }
.story p { margin-bottom: 1rem; }
.story-pull {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-top: .6rem;
  margin-bottom: 0;
}

/* ── Lineup ──────────────────────────────────────────── */
.lineup { max-width: 1100px; margin: 0 auto; padding: 3.4rem 1.5rem 4rem; }
.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.8vw, 2.8rem);
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
}
.section-sub {
  text-align: center;
  font-style: italic;
  color: rgba(36,31,28,.65);
  margin: .5rem 0 2.6rem;
}
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.product {
  background: #FFFDF6;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
  box-shadow: 5px 5px 0 rgba(36,31,28,.18);
  border-top: 10px solid var(--gold);
  transition: transform .18s ease;
}
.product:hover { transform: translateY(-5px); }
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
}
.product-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(36,31,28,.22));
}
.product-no {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(36,31,28,.5);
  margin-bottom: .5rem;
}
.product h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: .3rem;
}
.product-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: .7rem;
}
.product-desc { font-size: .95rem; margin-bottom: 1rem; }
.fine { font-size: .72rem; color: rgba(36,31,28,.55); }
.product-badge {
  display: inline-block;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  padding: .35em 1em;
}

/* per-product label colors */
.label-ketchup { border-top-color: var(--ketchup); }
.label-mayo { border-top-color: #E8DFC8; }
.label-mustard { border-top-color: var(--mustard-c); }
.label-ranch { border-top-color: #9BB27E; }
.label-bbq { border-top-color: #6B4A2F; }

/* the one evil card */
.label-satan {
  background: #1C1416;
  border-top-color: #C21807;
  color: #F3E6E4;
  box-shadow: 5px 5px 0 rgba(194,24,7,.35);
}
.label-satan h3 { color: #FF5A3C; }
.label-satan .product-tag { color: #E39A8E; }
.label-satan .product-no { color: rgba(243,230,228,.5); }
.product-badge-warn { color: #FF5A3C; border-color: #FF5A3C; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem 3.2rem;
}
.faq .section-title { margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(36,31,28,.12);
}
.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.faq-item dt {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: .35rem;
}
.faq-item dd {
  font-size: 1rem;
  color: rgba(36,31,28,.8);
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  background: var(--parchment-dark);
  border-top: 3px double var(--burgundy);
  border-bottom: 3px double var(--burgundy);
  padding: 3.6rem 1.5rem;
}
.quotes {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
blockquote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: .6rem;
}
blockquote cite { font-style: normal; font-size: .88rem; color: rgba(36,31,28,.65); }

/* ── Congregation ────────────────────────────────────── */
.congregation { text-align: center; max-width: 560px; margin: 0 auto; padding: 3.8rem 1.5rem; }
.congregation p { margin: .8rem 0 1rem; }
.contact-mail {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.2vw, 1.4rem);
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 3px solid var(--gold);
}
.contact-mail:hover { color: var(--green); }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
  padding: 2.8rem 1.5rem;
}
.footer .footer-ornament { margin-bottom: .8rem; }
.footer-mark { font-family: var(--display); font-weight: 600; letter-spacing: .22em; color: var(--gold); margin-bottom: .8rem; }
.footer-fine { font-size: .78rem; color: rgba(250,246,236,.55); max-width: 560px; margin: 0 auto; }

/* ── Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .products { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .products { grid-template-columns: 1fr; }
}
