/* Sonoran Sugar — warm, real-kitchen aesthetic */
:root {
  --cream: #fdfaf5;
  --card: #ffffff;
  --ink: #2d2318;
  --muted: #6b5d4d;
  --accent: #b5452a;      /* terracotta / real butter warmth */
  --accent-soft: #f3e3d8;
  --caramel: #7a5c3e;
  --border: #eee4d8;
  --link: #a03d24;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--accent); }
.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}
.nav a {
  color: var(--caramel);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero h1 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.hero .sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Article meta */
.disclosure {
  background: var(--accent-soft);
  border: 1px solid #edd3c4;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #7a4a2f;
  margin: 0 0 28px;
}

/* Content */
article h2 {
  font-size: 1.45rem;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
article h3 {
  font-size: 1.15rem;
  margin: 28px 0 8px;
}
article p { margin: 0 0 16px; }
article ul, article ol { margin: 0 0 16px; padding-left: 22px; }
article li { margin-bottom: 8px; }
article a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }

/* Tables */
.table-scroll { overflow-x: auto; margin: 16px 0 24px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  background: #f7efe6;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--caramel);
}
tr:last-child td { border-bottom: none; }
td .pname { font-weight: 600; }
.price { white-space: nowrap; font-weight: 600; }
.rating { white-space: nowrap; color: var(--caramel); }

/* CTA buttons */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin: 4px 0 8px;
}
.cta:hover { background: #9c3a22; }
.cta-row { margin: 20px 0 8px; }

/* Cards (homepage) */
.cards { display: grid; gap: 16px; margin: 24px 0; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.card:hover { border-color: var(--accent); }
.card .kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.card h2 { margin: 0 0 6px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card .status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #eef6ee;
  color: #3c6b3f;
}
.card .status.soon { background: #f3ede2; color: var(--caramel); }

/* Callout */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--card);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}
.callout p { margin: 0; }

/* FAQ */
.faq { margin: 8px 0 24px; }
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.faq details p { margin: 10px 0 0; color: var(--muted); }

footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { color: var(--caramel); }

@media (min-width: 640px) {
  .hero h1 { font-size: 2.4rem; }
  .cards { grid-template-columns: 1fr 1fr; }
}
