/* The BBQ Shack: smoke, ember and cream. Palette taken from the food
   itself: charred bark, ember orange, butcher-paper cream. */

:root {
  --smoke: #17130f;
  --smoke-2: #241d17;
  --cream: #f8f2e6;
  --cream-2: #efe5d2;
  --paper: #fffcf6;
  --ember: #cf4318;
  --ember-d: #a83208;
  --gold: #e0a028;
  --bark: #6b3f22;
  --ink: #33291f;
  --muted: #6d6154;
  --line: rgba(23, 19, 15, 0.13);
  --radius: 14px;
  --shadow: 0 2px 6px rgba(23, 19, 15, 0.06), 0 12px 28px rgba(23, 19, 15, 0.08);
  --shadow-lg: 0 8px 20px rgba(23, 19, 15, 0.1), 0 24px 60px rgba(23, 19, 15, 0.15);
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: Anton, "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--smoke);
  line-height: 1.02;
  margin: 0 0 0.45em;
}
h3, h4 {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  color: var(--smoke);
  line-height: 1.25;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.18rem; }
h4 { font-size: 0.95rem; }
p { margin: 0 0 1rem; }
a { color: var(--ember-d); }
/* height:auto is load-bearing: the width/height attributes on every <img> would
   otherwise pin a used height and make the aspect-ratio rules below inert. */
img { max-width: 100%; display: block; height: auto; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.band { background: var(--paper); }
.band-dark { background: var(--smoke); color: #ddd2c4; }
.band-dark h2, .band-dark h3, .band-dark h4 { color: var(--cream); }
.center { text-align: center; }
.mt-1 { margin-top: 1.25rem; }
.mt-2 { margin-top: 2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ember-d);
  margin-bottom: 0.6rem;
}
.band-dark .eyebrow, .hero-full .eyebrow { color: var(--gold); }

.lede { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.center .lede { margin-inline: auto; }
.band-dark .lede { color: #b3a696; }

.section-head { margin-bottom: 2.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 6px 18px rgba(207, 67, 24, 0.32); }
.btn-primary:hover { background: var(--ember-d); }
.btn-gold { background: var(--gold); color: var(--smoke); box-shadow: 0 6px 18px rgba(224, 160, 40, 0.35); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline { border-color: var(--smoke); color: var(--smoke); }
.btn-outline:hover { background: var(--smoke); color: var(--cream); }
.btn-small { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.center .btn-row { justify-content: center; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--smoke); color: #fff; padding: 0.75rem 1.25rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Call bar — the number is the whole point of the site, so it never scrolls away. */
.callbar {
  background: var(--smoke); color: var(--cream);
  font-size: 0.85rem; font-weight: 600;
}
.callbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; flex-wrap: wrap; }
.callbar a { color: var(--gold); text-decoration: none; font-weight: 800; }
.callbar a:hover { text-decoration: underline; }
.open-flag { display: inline-flex; align-items: center; gap: 0.45rem; }
.open-flag .dot { width: 8px; height: 8px; border-radius: 50%; background: #7d8a7f; }
.open-flag.is-open .dot { background: #4ec06a; box-shadow: 0 0 0 3px rgba(78, 192, 106, 0.22); }
.open-flag.is-closed .dot { background: #d0563a; box-shadow: 0 0 0 3px rgba(208, 86, 58, 0.2); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 242, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.65rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: Anton, "Arial Narrow", Impact, sans-serif; font-size: 1.15rem; text-transform: uppercase; color: var(--smoke); letter-spacing: 0.02em; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
/* The town is the first thing to go when space runs out. */
@media (max-width: 420px) { .brand-loc { display: none; } }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.94rem;
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ember-d); border-bottom-color: var(--ember); }
.site-nav a.btn { border-bottom: 2px solid transparent; color: #fff; }
.site-nav a.btn:hover { color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--smoke); transition: 0.2s; }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 60px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); padding: 0.5rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    transform: translateY(-160%); transition: transform 0.25s ease;
  }
  body.nav-open .site-nav { transform: translateY(0); }
  .site-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .site-nav a.btn { margin-top: 0.9rem; justify-content: center; }
}

/* Hero */
.hero-full { position: relative; color: #fff; padding: clamp(5rem, 13vw, 9rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-full::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14, 10, 7, 0.78) 0%, rgba(14, 10, 7, 0.55) 45%, rgba(14, 10, 7, 0.9) 100%);
}
.hero-full h1 { color: #fff; max-width: 15ch; text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45); }
.hero-full .lede { color: rgba(255, 255, 255, 0.92); font-size: 1.18rem; max-width: 52ch; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.hero-tags li {
  font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.28); color: #fff;
}

/* Page header (interior pages) */
.page-head { background: var(--smoke); color: #cfc4b6; padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.page-head h1 { color: var(--cream); }
.page-head .lede { color: #ab9e8f; }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid var(--line);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1.25rem 1.35rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.35rem; }
.card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.9rem; }
.card-link { margin-top: auto; font-weight: 800; font-size: 0.88rem; color: var(--ember-d); }
.card-link::after { content: " \2192"; }

/* Hours board */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0.7rem; border-bottom: 1px dashed var(--line); font-size: 0.97rem;
  border-radius: 8px;
}
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { background: rgba(224, 160, 40, 0.16); font-weight: 700; }
.hours .d { color: var(--muted); }
.hours li.is-today .d { color: var(--smoke); }
.hours .h { font-weight: 700; color: var(--smoke); white-space: nowrap; }

/* Menu tables */
.menu-block { margin-bottom: 3rem; scroll-margin-top: 150px; }
.menu-block h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); padding-bottom: 0.6rem; margin-bottom: 0.9rem;
  border-bottom: 3px solid var(--gold);
}
.menu-block .block-note { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.1rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex; align-items: baseline; gap: 0.75rem; padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-item { font-weight: 700; color: var(--smoke); }
.menu-desc { display: block; font-size: 0.86rem; font-weight: 400; color: var(--muted); }
.menu-dots { flex: 1; border-bottom: 1px dotted rgba(23, 19, 15, 0.28); transform: translateY(-3px); min-width: 1rem; }
.menu-price { font-weight: 800; color: var(--ember-d); white-space: nowrap; }
.menu-cols { columns: 2; column-gap: 3.5rem; }
@media (max-width: 820px) { .menu-cols { columns: 1; } }
.menu-note {
  background: var(--cream-2); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem; font-size: 0.92rem; color: var(--ink);
}
.menu-note strong { color: var(--smoke); }
.menu-note p:last-child { margin-bottom: 0; }

/* Sticky in-page menu nav */
.pillbar { position: sticky; top: 64px; z-index: 40; background: var(--smoke); padding: 0.7rem 0; }
.pills { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0; overflow-x: auto; scrollbar-width: none; }
.pills::-webkit-scrollbar { display: none; }
.pills a {
  display: inline-block; white-space: nowrap; text-decoration: none; font-weight: 700; font-size: 0.84rem;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.24); color: #fff;
}
.pills a:hover { background: var(--ember); border-color: var(--ember); }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.flip .split-media { order: 0; } }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media img.tall { aspect-ratio: 3 / 4; }
.ticks { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; }
.ticks li { position: relative; padding-left: 1.75rem; font-size: 0.97rem; }
.ticks li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--ember); font-weight: 800;
}

/* Price rows */
.prices { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.prices li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: 0.97rem;
}
.prices li:last-child { border-bottom: 0; }
.prices .p { font-weight: 800; color: var(--ember-d); white-space: nowrap; }
.prices .n small { display: block; font-size: 0.83rem; color: var(--muted); font-weight: 400; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--shadow);
}
.faq summary {
  font-weight: 700; color: var(--smoke); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--ember); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0.85rem 0 0.25rem; font-size: 0.95rem; color: var(--muted); }

/* Callout strip */
.strip {
  background: linear-gradient(100deg, var(--ember) 0%, var(--gold) 100%);
  color: #fff; border-radius: var(--radius); padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.strip h2 { color: #fff; margin: 0 0 0.35rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.strip p { margin: 0; color: rgba(255, 255, 255, 0.94); font-size: 0.98rem; }
.strip .btn { background: #fff; color: var(--ember-d); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery img { border-radius: 12px; aspect-ratio: 1 / 1; object-fit: cover; box-shadow: var(--shadow); width: 100%; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.25rem;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.85rem; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--line); font-size: 0.94rem; }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { color: var(--muted); }
.info-list .v { font-weight: 700; color: var(--smoke); text-align: right; }
.info-list .v a { color: inherit; text-decoration: none; }
.info-list .v a:hover { color: var(--ember-d); }

.pick p { color: var(--muted); font-size: 0.94rem; }
.pick .pick-price { margin: 0; font-weight: 800; color: var(--ember-d); }

.map-col { display: flex; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); flex: 1; }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 400px; border: 0; }

form .field { margin-bottom: 1rem; }
form label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--smoke); margin-bottom: 0.35rem; }
form input, form select, form textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); font: inherit; font-size: 0.95rem; color: var(--ink);
}
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--ember); border-color: var(--ember); }
form textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

/* Footer */
.site-footer { background: var(--smoke); color: #a2968a; padding: clamp(3rem, 5vw, 4rem) 0 1.5rem; }
.site-footer h4 { color: var(--cream); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #bdb1a3; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-visit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 880px) { .footer-visit { grid-template-columns: 1fr; } }
.fv-list { list-style: none; margin: 0; padding: 0; }
.fv-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.1); font-size: 0.92rem; }
.fv-list .k { color: #877c70; }
.fv-list .v { color: var(--cream); font-weight: 600; text-align: right; }
.fv-map { border-radius: var(--radius); overflow: hidden; min-height: 260px; border: 1px solid rgba(255, 255, 255, 0.12); }
.fv-map iframe { display: block; width: 100%; height: 100%; min-height: 260px; border: 0; filter: grayscale(0.25); }

.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: Anton, "Arial Narrow", Impact, sans-serif; text-transform: uppercase; color: var(--cream); font-size: 1.3rem; margin-bottom: 0.4rem; }
.footer-tagline { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.9rem; }
.site-footer p { font-size: 0.92rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.footer-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem; color: #776c61;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.card:hover { transform: none; }
}

/* Honeypot. Off-screen rather than display:none, which some bots skip. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
