/* ===========================================================
   Sauce North — shared styles
   Fresh, warm, craft look. Plain CSS, no build step.
   =========================================================== */

:root {
  --cream:      #fbf6ec;
  --cream-2:    #f3ead9;
  --charcoal:   #2a2420;
  --ink-soft:   #5a504733;
  --chili:      #b3321f;
  --chili-dark: #8c2415;
  --gold:       #d99524;
  --leaf:       #4d6a3c;
  --muted:      #6f655b;
  --white:      #ffffff;
  --shadow:     0 10px 30px rgba(42, 36, 32, 0.10);
  --radius:     14px;
  --maxw:       1120px;
  --font-head:  "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--chili-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--chili);
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--chili); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--chili-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.5rem; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--charcoal); }
.brand img { width: 30px; height: 30px; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: 0.98rem; }
.nav-links a.active { color: var(--chili); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--charcoal); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--cream-2); padding: 0.5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 0; border-bottom: 1px solid var(--cream-2); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 70vh; padding: 5rem 1.5rem;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,22,18,0.35), rgba(30,22,18,0.62));
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: #fbf1e6; margin-bottom: 1.8rem; }
.hero .eyebrow { color: #ffd9a0; }
.hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
.section-head { max-width: 700px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.bg-cream2 { background: var(--cream-2); }
.bg-dark { background: var(--charcoal); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-dark a { color: var(--gold); }

/* ---------- Feature grid (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.split.reverse .split-text { order: 2; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 1.5rem; } .split.reverse .split-text { order: 0; } }

/* ---------- Value cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); border: 1px solid var(--cream-2);
}
.card .icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }
@media (max-width: 800px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Sauce grid ---------- */
.sauce-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .sauce-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sauce-grid { grid-template-columns: 1fr; } }

.sauce {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--cream-2);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.sauce:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(42,36,32,.16); }
.sauce-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.sauce-photo img { width: 100%; height: 100%; object-fit: cover; }
.sauce-body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.sauce-body h3 { margin-bottom: 0.15rem; }
.sauce-tag { font-size: 0.82rem; color: var(--leaf); font-weight: 600; margin-bottom: 0.6rem; }
.sauce-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }

.heat { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem; font-size: 0.82rem; color: var(--muted); }
.heat .peppers { letter-spacing: 1px; filter: grayscale(0); }
.pepper-on { opacity: 1; }
.pepper-off { opacity: 0.22; }

/* ---------- Callout / contact band ---------- */
.band { text-align: center; }
.band .contact-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--cream-2); }
.contact-line { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 1.05rem; }
.contact-line .ic { font-size: 1.3rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #d9cfc4; padding: 3rem 0 2.2rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.site-footer a { color: #f0c479; }
.site-footer .brand { color: var(--cream); }
.footer-small { margin-top: 2rem; font-size: 0.86rem; color: #9c9087; border-top: 1px solid #443c34; padding-top: 1.3rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.pill { display:inline-block; background: var(--cream-2); color: var(--leaf); font-weight:600; font-size:0.8rem; padding: 0.3rem 0.8rem; border-radius: 999px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.07rem; }
.prose h2 { margin-top: 2.2rem; }
