/* ==========================================================================
   Black Oven — site.css
   Hand-written, no framework, no external requests (keeps CSP at 'self').
   Mobile-first. Designed to stay readable on a weak Ozarks cell signal.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --char:        #14110e;
  --char-soft:   #221d18;
  --ink:         #262019;
  --ash:         #6f665c;
  --sand:        #e6dccc;
  --cream:       #faf7f0;
  --paper:       #ffffff;
  --ember:       #c24e18;
  --ember-warm:  #e2762f;
  --ember-glow:  #f6b96a;

  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-display: ui-serif, Georgia, "Times New Roman", serif;

  --wrap: 68rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 1px 2px rgba(20, 17, 14, .06), 0 8px 24px rgba(20, 17, 14, .07);
  --transition: 160ms ease;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ember); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--char); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.125rem); }
h3 { font-size: 1.1875rem; }
p  { margin: 0 0 1rem; }

ul.plain { list-style: none; margin: 0; padding: 0; }

/* --- Utilities ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.muted { color: var(--ash); }
.small { font-size: .875rem; }
.center { text-align: center; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--char); color: var(--cream); padding: .75rem 1rem;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--ember-warm); outline-offset: 2px; border-radius: 3px; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; padding: .8rem 1.5rem;
  background: var(--ember); color: #fff;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; cursor: pointer;
  font-size: 1rem; font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover { background: #a94214; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 247, 240, .35); }
.btn-ghost:hover { background: rgba(250, 247, 240, .1); color: #fff; }

.btn-outline { background: transparent; color: var(--ember); border-color: currentColor; }
.btn-outline:hover { background: var(--ember); color: #fff; }

.btn-sm { padding: .5rem 1rem; font-size: .9375rem; }

/* --- Header -------------------------------------------------------------- */
.site-header { background: var(--char); color: var(--cream); position: sticky; top: 0; z-index: 50; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .875rem;
}

.brand { display: flex; align-items: center; gap: .7rem; color: var(--cream); text-decoration: none; }
.brand-mark { color: var(--ember-glow); display: flex; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .02em; line-height: 1.1;
}
.brand-tag { font-size: .6875rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ember-glow); }

.nav-toggle {
  display: block; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; position: relative; color: var(--cream);
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px;
  background: currentColor; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { top: -7px; left: 0; }
.nav-toggle-bar::after  { top:  7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateY(-7px) rotate(-45deg); }

.nav { display: none; flex-basis: 100%; }
.nav.is-open { display: block; }
.nav ul { list-style: none; margin: 0; padding: .5rem 0 1rem; display: flex; flex-direction: column; gap: .25rem; }
.nav a {
  display: block; padding: .6rem .25rem; color: var(--cream);
  text-decoration: none; font-weight: 500; border-radius: var(--radius);
}
.nav a:hover { color: var(--ember-glow); }
.nav a[aria-current="page"] { color: var(--ember-glow); }
.nav .btn { color: #fff; }
.nav-call { margin-top: .5rem; }

@media (min-width: 52rem) {
  .nav-toggle { display: none; }
  .nav { display: block; flex-basis: auto; }
  .nav ul { flex-direction: row; align-items: center; gap: 1.5rem; padding: 0; }
  .nav a { padding: .25rem 0; }
  .nav-call { margin-top: 0; margin-left: .5rem; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(circle at 18% 120%, rgba(226, 118, 47, .28), transparent 55%),
    radial-gradient(circle at 85% -10%, rgba(246, 185, 106, .12), transparent 50%),
    var(--char);
  color: var(--cream);
  padding-block: clamp(3.5rem, 10vw, 6.5rem);
  text-align: center;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero-lede { font-size: clamp(1.0625rem, 2.4vw, 1.3rem); color: var(--sand); max-width: 46ch; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .2em; font-size: .75rem;
  color: var(--ember-glow); margin-bottom: 1rem; font-weight: 600;
}

/* --- Sections ------------------------------------------------------------ */
.section { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.section-alt { background: var(--paper); border-block: 1px solid var(--sand); }
.section-head { max-width: 52ch; margin-bottom: 2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* --- Cards / grid -------------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 52rem) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35rem; }
.card p:last-child { margin-bottom: 0; }

/* --- Menu ---------------------------------------------------------------- */
.menu-section { margin-bottom: 3rem; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section > h2 {
  border-bottom: 2px solid var(--ember); display: inline-block;
  padding-bottom: .2rem; margin-bottom: .75rem;
}
.menu-blurb { color: var(--ash); max-width: 58ch; }

.menu-list { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.menu-item { padding: 1rem 0; border-bottom: 1px dashed var(--sand); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-item-name { font-weight: 600; font-family: var(--font-display); font-size: 1.0625rem; }
.menu-item-price { font-variant-numeric: tabular-nums; color: var(--ember); font-weight: 600; white-space: nowrap; }
.menu-item-desc { color: var(--ash); margin: .2rem 0 0; font-size: .9375rem; }
.menu-note { margin-top: 2.5rem; padding: 1rem 1.25rem; background: var(--paper); border-left: 3px solid var(--ember-warm); border-radius: 0 var(--radius) var(--radius) 0; }

/* --- Hours --------------------------------------------------------------- */
.hours { margin: 0; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid rgba(111, 102, 92, .18); }
.hours-row:last-child { border-bottom: 0; }
.hours dt { font-weight: 500; }
.hours dd { margin: 0; text-align: right; color: var(--ash); font-variant-numeric: tabular-nums; }

/* --- Notice / callout ---------------------------------------------------- */
.notice {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  background: #fdf3e6; border: 1px solid #f0d5ae; color: #6b4415;
}
.notice-error { background: #fdeceb; border-color: #f2c4c0; color: #86281f; }
.notice-ok    { background: #eaf6ee; border-color: #b9dfc6; color: #1f6034; }
.notice p:last-child { margin-bottom: 0; }

/* --- Forms --------------------------------------------------------------- */
.form { max-width: 34rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9375rem; }
.field .hint { color: var(--ash); font-weight: 400; font-size: .875rem; }

.field input,
.field textarea {
  width: 100%; padding: .7rem .85rem; font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid #cfc4b2; border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field textarea:focus {
  outline: none; border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(194, 78, 24, .16);
}
.field textarea { min-height: 9rem; resize: vertical; }

.field-error input, .field-error textarea { border-color: #c0392b; }
.error-text { color: #a3271b; font-size: .875rem; margin: .35rem 0 0; }

/* Honeypot: hidden from humans, present in the DOM for bots.
   Uses absolute positioning (not display:none) because some bots skip
   display:none inputs. Marked aria-hidden + tabindex=-1 so assistive
   technology and keyboard users never reach it. */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--char); color: var(--sand); padding-block: 3rem 1.5rem; margin-top: 0; }
.site-footer a { color: var(--ember-glow); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 44rem) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-h { font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .75rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { padding: .2rem 0; }
.footer-col .hours-row { border-bottom-color: rgba(230, 220, 204, .14); }
.footer-col .hours dd { color: var(--sand); }
.social { display: flex; gap: 1rem; margin-top: .75rem; flex-wrap: wrap; }
.footer-base { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(230, 220, 204, .16); }
.site-footer .muted { color: #9d938700; color: rgba(230, 220, 204, .6); }

/* --- Print --------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: .75rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
