/* Fondry — style.css v1 · Skill E House v1.21
   Palette (see build-log.md for sources + computed WCAG):
   ground #fdfcf9 · ink #221b12 · kraft tint #f2e9dc · muted #5e564a
   sage #546247 (accents) · ACTION amber #99560f (CTAs ONLY)
   dots: green #15803d / red #d92d20 (semantic, v1.17) */

@font-face {
  font-family: 'Nunito';
  src: url('fonts/nunito-var.woff2?v=1') format('woff2');
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/rubik-var.woff2?v=1') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ground: #fdfcf9;
  --ink: #221b12;
  --tint: #f2e9dc;
  --kraft-line: #e2d5c2;
  --muted: #5e564a;
  --sage: #546247;
  --action: #99560f;
  --band-text: #f4ead9;
  --gold-lt: #cfa86a;
  --dot-open: #15803d;
  --dot-closed: #d92d20;
  --display: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ground);
}

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

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

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.15; }

h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.75rem; }

a { color: var(--sage); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 10px;
  min-height: 48px;
  padding: 12px 26px;
  transition: transform 150ms ease, opacity 150ms ease;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary { background: var(--action); color: #ffffff; }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }

/* ---------- Header (v1.19 layout law) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ground);
  border-bottom: 1px solid var(--kraft-line);
}
.header-row {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 12px;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav { display: none; }
/* Button pinned flush RIGHT at every width; nav is a display:none sibling on
   mobile, so no nav-adjacent margin resets outside the desktop breakpoint. */
.btn-header {
  margin-left: auto;
  min-height: 44px;
  padding: 9px 20px;
  font-size: 1rem;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
  }
  .site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 1rem;
    padding: 13px 4px;
  }
  .site-nav a:hover { color: var(--sage); }
  .btn-header { margin-left: 26px; }
}

/* ---------- First screen ---------- */
.hero { padding: 40px 0 56px; }
.hero-grid { display: grid; gap: 32px; }
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.3rem);
  margin-bottom: 16px;
}
.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 24px;
}
.cta-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.cta-stack .btn { width: 100%; }
.hours-block { border-top: 1px solid var(--kraft-line); padding-top: 18px; }
.status { font-size: 1.05rem; margin-bottom: 10px; }
.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: 1px;
}
.dot.open { background: var(--dot-open); }
.dot.closed { background: var(--dot-closed); }
.hours-table { border-collapse: collapse; color: var(--muted); font-size: 0.98rem; }
.hours-table th { text-align: left; font-weight: 500; padding: 2px 18px 2px 0; }
.hours-table td { padding: 2px 0; }
.sellout-note { color: var(--muted); font-size: 0.98rem; margin-top: 8px; }
.hero-photo img { border-radius: 14px; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .cta-stack { flex-direction: row; }
  .cta-stack .btn { width: auto; }
}

/* ---------- Proof strip (quiet, never a band) ---------- */
.proof { padding: 8px 0 48px; text-align: center; }
.proof-quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  max-width: 24em;
  margin: 0 auto 10px;
}
.proof-attr { color: var(--muted); font-size: 0.98rem; }
.proof-attr a {
  color: var(--sage);
  display: inline-block;
  padding: 12px 6px;
  margin: -8px 0;
}

/* ---------- Menu (signature element: their menu-board as a card) ---------- */
.menu-band { background: var(--tint); padding: 64px 0; }
.board {
  background: #ffffff;
  border: 1px solid var(--kraft-line);
  border-radius: 16px;
  padding: 36px 26px 30px;
  box-shadow: 0 2px 14px rgba(34, 27, 18, 0.06);
  max-width: 880px;
  margin: 0 auto;
}
.board-head { text-align: center; margin-bottom: 26px; }
.board-head h2 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}
.board-note { color: var(--muted); font-size: 0.98rem; }
.board-cols { display: grid; gap: 30px; }
.menu-list { list-style: none; }
.menu-list li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--kraft-line);
  font-size: 1.02rem;
}
.menu-list li:last-child { border-bottom: none; }
.menu-note { display: block; color: var(--muted); font-size: 0.9rem; }
.excl-head {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.excl-star { margin-right: 2px; }
.excl-group {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 14px 0 2px;
}
.board-drinks {
  margin-top: 30px;
  border-top: 1px solid var(--kraft-line);
  padding-top: 22px;
  text-align: center;
}
.board-drinks h3 {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.board-drinks p { color: var(--muted); max-width: 40em; margin: 0 auto; }
@media (min-width: 700px) {
  .board { padding: 44px 48px 38px; }
  .board-cols { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

/* ---------- Gallery ---------- */
.gallery { padding: 64px 0; }
.gallery h2 { text-align: center; margin-bottom: 28px; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.gallery-grid figcaption { font-size: 0.88rem; color: var(--muted); padding-top: 6px; }
.gal-quote { margin: 40px auto 0; max-width: 36em; text-align: center; }
.gal-quote blockquote { font-size: 1.15rem; font-style: italic; margin-bottom: 8px; }
.gal-quote figcaption { color: var(--muted); font-size: 0.98rem; }
.cta-row { text-align: center; margin-top: 26px; }
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
}

/* ---------- About ---------- */
.about { background: var(--tint); padding: 64px 0; }
.about-grid { display: grid; gap: 30px; align-items: center; }
.about-copy p { margin-bottom: 14px; max-width: 32em; }
.about-copy p:last-child { margin-bottom: 0; }
.about-photo img { border-radius: 14px; }
@media (min-width: 760px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ---------- Reviews ---------- */
.reviews { padding: 64px 0; }
.kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.review-grid { display: grid; gap: 16px; margin-top: 20px; }
.review-card {
  border: 1px solid var(--kraft-line);
  border-radius: 14px;
  padding: 22px;
  background: #ffffff;
}
.review-card blockquote { margin-bottom: 12px; }
.review-card .attr { color: var(--muted); font-size: 0.95rem; }
@media (min-width: 700px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 24px 0 64px; }
.faq h2 { margin-bottom: 18px; }
.faq details { border-top: 1px solid var(--kraft-line); }
.faq details:last-of-type { border-bottom: 1px solid var(--kraft-line); }
.faq summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 4px;
  cursor: pointer;
  min-height: 44px;
}
.faq details p { padding: 0 4px 18px; color: var(--muted); max-width: 42em; }

/* ---------- Visit (the ONE heavy band) ---------- */
.visit { background: var(--ink); color: var(--band-text); padding: 64px 0 72px; }
.visit h2 { color: #ffffff; margin-bottom: 26px; }
.visit h3 {
  color: var(--gold-lt);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.visit-grid { display: grid; gap: 36px; }
.visit-address { margin-bottom: 20px; }
.visit-address a { color: var(--band-text); text-decoration-color: var(--gold-lt); }
.visit .hours-table { color: var(--band-text); }
.visit .btn-primary { width: 100%; }
.visit :focus-visible { outline-color: var(--band-text); }
@media (min-width: 700px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit .btn-primary { width: auto; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 26px 0; }
.site-footer p { color: var(--muted); font-size: 0.9rem; text-align: center; }

/* ---------- Reveal animations (JS-gated; content visible without JS) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 250ms ease, transform 250ms ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
