/* Walt's Bar — skill v1.24
   ICONIC-PALETTE PATH (v1.15): GREEN is the brand, proven on 3+ physical artifacts —
   the marquee's green trim + neon Connors clock, the olive-green matchbook, the green
   Walt's caps, the green tile wall, the interior Connors neon. Ground goes toward the
   building's own warm white stucco. Green does headings/links/bands; ACTION comes from
   INSIDE the set: the neon RED of the OPEN sign and the painted PINBALL letters,
   reserved exclusively for CTAs. ONE dark hue: the deep green of the closer band. */

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito-var.woff2") format("woff2-variations");
  font-weight: 200 1000;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("fonts/rubik-var.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ground: #faf7ef;
  --tint: #eef0e2;
  --card: #fffef9;
  --ink: #22301f;
  --green: #1e5c45;
  --green-deep: #17402f;
  --muted: #5d685b;
  --line: #d9dcc8;
  --action: #bf2e24;
  --action-dark: #a02318;
  --display: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Rubik", "Helvetica Neue", Arial, sans-serif;
}

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

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

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

.shell { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 18px; color: var(--green-deep); }
h3 { font-size: 19px; }

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

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  padding-top: 10px; padding-bottom: 10px;
}
.wordmark {
  font-family: var(--display); font-weight: 700; font-size: 21px;
  color: var(--green-deep); text-decoration: none; line-height: 1.05;
  white-space: nowrap;
}
.wordmark span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.site-nav { display: none; }
.btn-header { margin-left: auto; padding: 10px 20px; min-width: 112px; text-align: center; }
@media (min-width: 900px) {
  .site-nav { display: flex; gap: 20px; margin-left: 26px; }
  .site-nav a { color: var(--ink); text-decoration: none; font-size: 15px; }
  .site-nav a:hover { text-decoration: underline; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--body); font-weight: 500;
  font-size: 16.5px; text-decoration: none; text-align: center;
  border-radius: 10px; padding: 14px 26px; border: 2px solid transparent;
}
.btn-primary { background: var(--action); color: #fff; }
.btn-primary:hover { background: var(--action-dark); }
.btn-secondary { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-secondary:hover { background: rgba(34, 48, 31, .06); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-outline-light { border-color: #fff; color: #fff; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.cta-row.center { justify-content: center; }
@media (max-width: 640px) {
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
}

/* ---------- hero ---------- */
.hero { padding: 40px 0 46px; }
.hero-grid { display: grid; gap: 30px; }
.hero h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 16px; }
.subtitle { font-size: 18.5px; max-width: 48ch; }
.hours { margin-top: 6px; }
.hours-status { display: flex; align-items: center; gap: 8px; font-size: 16.5px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--muted); flex: 0 0 auto; }
.dot.open { background: #1d8a3c; }
.dot.closed { background: #c22c2c; }
.hours-table { margin-top: 6px; color: var(--muted); font-size: 15.5px; }
.hours-table p { margin: 0; }
.hero-photo img { border-radius: 14px; }
@media (min-width: 820px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* ---------- proof strip (quiet) ---------- */
.proof { padding: 8px 0 4px; }
.proof-inner { max-width: 760px; }
.proof blockquote p {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(19px, 2.6vw, 23px); line-height: 1.35;
}
.proof blockquote footer { margin-top: 8px; color: var(--muted); font-size: 15px; }
.quiet-link { color: var(--muted); }

/* ---------- sections ---------- */
.section { padding: 54px 0; }
.section-tint { background: var(--tint); }
.section-lede { color: var(--muted); margin: -8px 0 20px; }

/* ---------- menu (letterboard homage in the design) ---------- */
.menu-grid { display: grid; gap: 24px; }
.menu-board {
  background: #26251f; color: #f4efdf; border-radius: 12px;
  padding: 26px 26px 20px; border: 6px solid #3a382f;
}
.menu-board h3 {
  color: #f4efdf; letter-spacing: .12em; text-transform: uppercase;
  font-size: 15px; margin: 18px 0 10px;
}
.menu-board h3:first-child { margin-top: 0; }
.menu-list { list-style: none; }
.menu-list li {
  display: flex; align-items: baseline; gap: 8px;
  padding: 7px 0; font-size: 16.5px;
}
.menu-list li em { font-style: normal; font-size: 14px; color: #bdb79f; display: block; }
.menu-list .dots { flex: 1; border-bottom: 2px dotted #56543f; min-width: 20px; }
.menu-note { margin-top: 16px; color: #bdb79f; font-size: 14.5px; }
.menu-photo { display: grid; gap: 14px; align-content: start; }
.menu-photo img { border-radius: 12px; }
@media (min-width: 820px) {
  .menu-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
}

/* ---------- pinball ---------- */
.machines-copy { max-width: 62ch; margin-bottom: 14px; }
.machines-copy a { color: var(--green); }
.work-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 22px; }
.work-grid figure { border-radius: 12px; overflow: hidden; }
.work-grid img { width: 100%; height: 240px; object-fit: cover; }
@media (min-width: 820px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- timeline (signature element) ---------- */
.timeline { display: grid; gap: 18px; margin-bottom: 24px; }
.tl-stop {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px; border-top: 5px solid var(--green);
}
.tl-year {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: .1em; color: var(--green);
}
.tl-stop h3 { margin: 4px 0 8px; color: var(--ink); }
.tl-stop p { font-size: 16px; }
@media (min-width: 820px) { .timeline { grid-template-columns: 1fr 1fr 1fr; } }
.story-photos { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.story-photos figure { border-radius: 12px; overflow: hidden; }
.story-photos img { width: 100%; height: 220px; object-fit: cover; }
@media (min-width: 820px) { .story-photos { grid-template-columns: 1fr 1fr 1fr; } }

/* ---------- reviews ---------- */
.review-grid { display: grid; gap: 18px; }
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px;
}
.review p { font-size: 16.5px; }
.review footer { margin-top: 12px; color: var(--muted); font-size: 14.5px; }
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ---------- faq ---------- */
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 12px;
}
summary {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  cursor: pointer;
}
summary:focus-visible { outline: 2px solid var(--action); outline-offset: 3px; }
details p { margin-top: 10px; }

/* ---------- closer (the one heavy band, the dark green) ---------- */
.closer {
  background: var(--green-deep); color: #fff; padding: 60px 0;
  text-align: center;
}
.closer h2 { color: #fff; }
.closer > .shell > p { color: #d9e5d5; }
.visit-grid {
  display: grid; gap: 26px; margin-top: 36px; text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .18); padding-top: 32px;
}
.visit-info h3 { color: #fff; font-size: 16px; margin: 18px 0 6px; }
.visit-info h3:first-child { margin-top: 0; }
.visit-info p, .visit-info .hours-table { color: #d9e5d5; font-size: 16px; }
.visit-link { color: #fff; }
.visit-photo img { border-radius: 12px; width: 100%; }
@media (min-width: 760px) {
  .visit-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---------- footer ---------- */
.site-footer { padding: 22px 0 30px; color: var(--muted); font-size: 14.5px; }

/* ---------- reveal animation (gated on html.js) ---------- */
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .3s ease, transform .3s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- focus ---------- */
a:focus-visible, .btn:focus-visible { outline: 3px solid var(--action); outline-offset: 2px; }
.closer a:focus-visible { outline-color: #fff; }
