/* Another Round: theme styles */

:root {
  --smoke: #14110f;
  --night: #0e0b09;
  --char: #1c1815;
  --panel: #241e19;
  --line: #3a3028;
  --cream: #f4ecdc;
  --muted: #b9ad98;
  --whiskey: #d9982f;
  --whiskey-hi: #efb24e;
  --whiskey-ink: #9a5f12;   /* whiskey dark enough for small text on paper */
  --brick: #a8361f;
  --paper: #f3e9d6;
  --paper-2: #eadcc1;
  --paper-line: #d9c8a6;
  --ink: #1a1512;
  --ink-muted: #5a4e43;

  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --body: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 88px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--smoke);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 900; line-height: .92; letter-spacing: .005em; text-transform: uppercase; }
p { margin: 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.eyebrow { font-family: var(--body); font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--whiskey); }
.rule { display: block; width: 56px; height: 3px; background: var(--whiskey); }
.icon { width: 1em; height: 1em; flex: none; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--whiskey); color: var(--ink); padding: 10px 16px; font-weight: 600; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--whiskey-hi); outline-offset: 3px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  min-height: 48px; padding: 0 1.6em; border: 2px solid transparent; border-radius: 2px;
  font-family: var(--body); font-weight: 700; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn .icon { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover .icon { transform: translateX(3px); }
.btn-primary { background: var(--whiskey); border-color: var(--whiskey); color: var(--ink); }
.btn-primary:hover { background: var(--whiskey-hi); border-color: var(--whiskey-hi); }
.btn-outline-light { border-color: var(--cream); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); }
.btn-outline { border-color: var(--whiskey); color: inherit; }
.btn-outline:hover { background: var(--whiskey); color: var(--ink); }

/* ---------- Top bar ---------- */
.topbar { background: var(--night); color: var(--muted); font-size: .76rem; }
.topbar .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { color: var(--cream); text-decoration: none; }
.topbar a:hover { color: var(--whiskey-hi); }
.topbar-addr, .topbar-phone { display: inline-flex; align-items: center; gap: .5em; }
.topbar .icon { width: 14px; height: 14px; color: var(--whiskey); }
.topbar-end { display: flex; align-items: center; justify-content: flex-end; gap: 1.1rem; }
.topbar .social .icon { width: 16px; height: 16px; color: var(--cream); }
.topbar .social:hover .icon { color: var(--whiskey-hi); }
.status { display: inline-flex; align-items: center; gap: .55em; color: var(--cream); font-weight: 500; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--muted); flex: none; }
.status.is-open::before { background: #6fcf7a; box-shadow: 0 0 0 3px rgba(111, 207, 122, .2); }
.status.is-soon::before, .status.is-later::before { background: var(--whiskey); box-shadow: 0 0 0 3px rgba(217, 152, 47, .22); }
.status.is-closed::before { background: var(--brick); }

/* ---------- Brand (text logo) ---------- */
.brand { display: inline-flex; flex-direction: column; align-items: stretch; text-align: center; text-decoration: none; color: var(--ink); line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 900; font-size: 2.15rem; text-transform: uppercase; letter-spacing: .01em; }
.brand-kind { display: flex; align-items: center; gap: .6em; margin-top: .3rem; font-weight: 700; font-size: .66rem; letter-spacing: .34em; text-transform: uppercase; color: var(--whiskey-ink); }
.brand-kind::before, .brand-kind::after { content: ""; flex: 1; height: 1.5px; background: var(--whiskey); }
.brand-town { margin-top: .35rem; font-size: .5rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-muted); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--paper-line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(1.4rem, 3vw, 2.8rem); align-items: center; }
.site-nav a { display: block; padding: .4rem 0; text-decoration: none; font-weight: 500; font-size: .9rem; color: var(--ink); border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--whiskey-ink); }
.site-nav .current-menu-item > a, .site-nav a[aria-current="page"] { color: var(--whiskey-ink); border-bottom-color: var(--whiskey); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 4px; background: transparent; border: 1px solid var(--paper-line); color: var(--ink); cursor: pointer; }
.nav-toggle svg { margin: auto; }

/* ---------- Photos & placeholders ---------- */
.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.placeholder {
  display: grid; place-items: center; color: rgba(217, 152, 47, .38);
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(217, 152, 47, .20), transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 100%, rgba(168, 54, 31, .20), transparent 70%),
    linear-gradient(160deg, #2a221b, #15110e);
}
.placeholder::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .12; mix-blend-mode: overlay; }
.placeholder .icon { width: clamp(48px, 7vw, 76px); height: auto; stroke-width: 1.1; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: clamp(440px, 50vw, 600px);
  background-color: var(--smoke);
  background-image:
    linear-gradient(90deg, rgba(14,11,9,.94) 0%, rgba(14,11,9,.80) 38%, rgba(14,11,9,.25) 75%, rgba(14,11,9,.10) 100%),
    radial-gradient(ellipse 55% 75% at 78% 45%, rgba(217,152,47,.32), transparent 70%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(168,54,31,.22), transparent 70%),
    var(--photo, none);
  background-size: cover; background-position: center right;
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--grain); opacity: .08; mix-blend-mode: overlay; }
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 96px); }
.hero h1 { margin-top: 1.1rem; font-size: clamp(4rem, 10.5vw, 7.6rem); line-height: .86; color: var(--cream); }
.hero-script { margin-top: 1rem; font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3.1vw, 2.5rem); line-height: 1.15; color: var(--whiskey); }
.hero .actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; background: var(--night); border-block: 3px solid var(--night); }
.tile { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; color: var(--cream); text-decoration: none; }
.tile .photo { transition: transform .6s ease; }
.tile:hover .photo { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(14,11,9,.85) 100%); pointer-events: none; }
.tile-label { position: absolute; z-index: 1; left: clamp(1rem, 2.4vw, 1.6rem); bottom: clamp(.9rem, 2vw, 1.3rem); display: flex; flex-wrap: wrap; align-items: baseline; column-gap: .4em; font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: .85; text-transform: uppercase; }
.tile-label small { flex-basis: 100%; font-size: .62em; }
.tile-label .icon { width: .55em; height: .55em; color: var(--whiskey); transition: transform .2s; }
.tile:hover .tile-label .icon { transform: translateX(4px); }
.tile-corner { position: absolute; z-index: 1; right: 1.1rem; bottom: 1.1rem; color: var(--whiskey); }
.tile-corner .icon { width: 20px; height: 20px; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); background: var(--paper); color: var(--ink); }
.about-photo { position: relative; min-height: clamp(380px, 38vw, 520px); overflow: hidden; }
.about-copy { padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px); align-self: center; max-width: 38rem; }
.about .eyebrow { color: var(--whiskey-ink); }
.about h2 { margin-top: .9rem; font-size: clamp(2.8rem, 5vw, 4.2rem); }
.about .rule { margin: 1.4rem 0 1.6rem; }
.about-copy p:not(.eyebrow) { color: var(--ink-muted); }
.about-copy p + p { margin-top: 1rem; }
.about .btn { margin-top: 1.9rem; }

/* ---------- Section head (favorites, happenings) ---------- */
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.2rem 3rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-top: .8rem; font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
.section-head h2 .rule { display: inline-block; vertical-align: middle; width: clamp(36px, 5vw, 64px); margin-left: .35em; }
.section-intro { max-width: 25rem; font-size: .95rem; }

/* ---------- House favorites ---------- */
.favorites { position: relative; padding-block: clamp(64px, 9vw, 104px); background: radial-gradient(ellipse 60% 50% at 20% 0%, rgba(217,152,47,.08), transparent 70%), var(--smoke); }
.favorites::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .06; mix-blend-mode: overlay; pointer-events: none; }
.favorites .wrap { position: relative; }
.favorites .section-intro { color: var(--muted); }
.dishes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.dish-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-body { margin-top: 1.1rem; padding: .1rem 0 .2rem 1.1rem; border-left: 2px solid var(--whiskey); }
.dish-meta { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--whiskey); }
.dish h3 { margin-top: .35rem; font-size: clamp(1.7rem, 2.6vw, 2.1rem); font-weight: 800; }
.dish-body > p:last-child:not(.dish-meta) { margin-top: .55rem; color: var(--muted); font-size: .92rem; }
.favorites-foot { margin-top: clamp(2rem, 4vw, 2.8rem); }
.favorites-foot .btn { color: var(--cream); }

/* ---------- This week ---------- */
.happenings { padding-block: clamp(64px, 9vw, 104px); background: var(--paper); color: var(--ink); }
.happenings .eyebrow { color: var(--whiskey-ink); }
.happenings .section-head .btn { color: var(--ink); }
.event-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--paper-line); }
.event-list > li { border-bottom: 1px solid var(--paper-line); }
.event-row { display: grid; grid-template-columns: 64px 64px minmax(0, 1fr) 28px; align-items: center; gap: 1.2rem; padding: 1.1rem .6rem; color: var(--ink); text-decoration: none; transition: background .2s; }
.event-row:hover { background: rgba(255, 255, 255, .45); }
.event-date { display: flex; flex-direction: column; line-height: 1; color: var(--brick); }
.event-date span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.event-date strong { font-family: var(--display); font-weight: 900; font-size: 2rem; }
.event-day { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }
.event-title { display: block; font-family: var(--display); font-weight: 800; font-size: 1.45rem; line-height: 1; text-transform: uppercase; }
.event-meta { display: block; margin-top: .3rem; font-size: .84rem; color: var(--ink-muted); }
.event-meta i { font-style: normal; margin-inline: .8em; opacity: .5; }
.event-go { color: var(--whiskey-ink); justify-self: end; }
.event-go .icon { width: 18px; height: 18px; transition: transform .2s; }
.event-row:hover .event-go .icon { transform: translateX(4px); }
.event-empty { padding: 1.4rem .6rem; color: var(--ink-muted); }
.event-empty a { color: var(--brick); font-weight: 600; }

/* ---------- Banner ---------- */
.band {
  position: relative; display: flex; align-items: center; min-height: clamp(260px, 28vw, 380px); overflow: hidden;
  background-color: var(--char);
  background-image:
    linear-gradient(90deg, rgba(14,11,9,.88) 0%, rgba(14,11,9,.55) 50%, rgba(14,11,9,.25) 100%),
    radial-gradient(ellipse 40% 70% at 85% 80%, rgba(217,120,40,.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(217,152,47,.12), transparent 70%),
    var(--photo, none);
  background-size: cover; background-position: center;
}
.band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--grain); opacity: .08; mix-blend-mode: overlay; }
.band .wrap { position: relative; z-index: 1; padding-block: 56px; }
.band-text { max-width: 13ch; font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: .92; text-transform: uppercase; color: var(--cream); }
.band .rule { margin-top: 1.4rem; }

/* ---------- Hours & location ---------- */
.visit { padding-block: clamp(56px, 7vw, 88px); background: var(--smoke); }
.visit .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.visit h2 { font-size: clamp(2.2rem, 3.6vw, 2.9rem); }
.visit .rule { margin: 1rem 0 1.4rem; }
.hours { border-collapse: collapse; font-size: .9rem; }
.hours th, .hours td { padding: .3rem 0; text-align: left; font-variant-numeric: tabular-nums; }
.hours th { font-weight: 400; color: var(--muted); padding-right: 2.2rem; }
.hours td { color: var(--cream); }
.hours tr.is-closed-day td { color: var(--muted); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--whiskey-hi); font-weight: 600; }
.hours-note { margin-top: 1rem; font-size: .8rem; color: var(--muted); max-width: 26rem; }
.visit-contact { display: grid; gap: 1.1rem; justify-items: start; padding-left: clamp(1.5rem, 3.5vw, 3rem); border-left: 1px solid var(--line); align-self: stretch; align-content: center; }
.visit-line { display: flex; gap: .9rem; align-items: flex-start; font-size: .95rem; }
.visit-line .icon { width: 20px; height: 20px; margin-top: .15em; color: var(--whiskey); }
.visit-line a { color: var(--cream); text-decoration: none; }
.visit-line a:hover { color: var(--whiskey-hi); }
.visit-email { padding-left: calc(20px + .9rem); font-size: .88rem; }
.visit-email a { color: var(--muted); }
.visit-contact .btn { margin-top: .4rem; color: var(--cream); }
.map { position: relative; min-height: 250px; height: 100%; background: var(--panel); border-radius: 2px; overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper); color: var(--ink); padding-block: 2rem; border-top: 3px solid var(--whiskey); }
.site-footer .wrap { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.5rem clamp(1.5rem, 4vw, 3rem); }
.site-footer .brand-name { font-size: 1.7rem; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem clamp(1.2rem, 2.5vw, 2.2rem); }
.footer-nav a { font-size: .85rem; font-weight: 500; text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: .15rem; }
.footer-nav a:hover { color: var(--whiskey-ink); }
.footer-nav .current-menu-item > a, .footer-nav a[aria-current="page"] { color: var(--whiskey-ink); border-bottom-color: var(--whiskey); }
.footer-social { display: flex; gap: .9rem; }
.footer-social .icon { width: 22px; height: 22px; }
.footer-social a:hover { color: var(--whiskey-ink); }
.footer-legal { padding-left: 1.4rem; border-left: 1px solid var(--paper-line); font-size: .7rem; line-height: 1.5; color: var(--ink-muted); }
.footer-credit { display: block; margin-top: .3rem; }
.footer-credit a { color: var(--ink-muted); }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* ---------- Page header + generic content ---------- */
.page-hero { padding-block: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 56px); background: radial-gradient(ellipse 60% 90% at 85% 0%, rgba(217,152,47,.16), transparent 70%), var(--smoke); }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin-top: .8rem; }
.page-hero .lede { margin-top: 1rem; max-width: 36em; color: #ddd2bf; font-size: 1.05rem; }
.page-hero .actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.page-body { padding-block: clamp(48px, 7vw, 88px); }
.prose { max-width: 46rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.6rem; margin-top: 1.4em; }
.prose a { color: var(--whiskey-hi); }
.prose img { height: auto; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose input, .prose textarea, .prose select { font: inherit; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-inline: auto; }
.wp-caption-text, .wp-element-caption { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.post-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.post-list h2 { font-size: 2rem; }
.post-list h2 a { text-decoration: none; }
.post-list time { color: var(--muted); font-size: .85rem; }

/* ---------- Full menu page (ar-menu plugin markup) ---------- */
.menu-page { background: var(--paper); color: var(--ink); padding-block: clamp(48px, 7vw, 96px); }
.ar-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 5rem); align-items: start; }
.ar-menu-nav { grid-column: 1 / -1; position: sticky; top: var(--header-h); z-index: 5; margin-inline: calc(-1 * var(--gutter)); padding: .8rem var(--gutter); background: rgba(243, 233, 214, .95); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-bottom: 1px solid var(--paper-line); }
.ar-menu-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.ar-menu-nav ul::-webkit-scrollbar { display: none; }
.ar-menu-nav a { display: block; white-space: nowrap; padding: .45em 1em; border: 1.5px solid var(--ink); border-radius: 2px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.ar-menu-nav a:hover { background: var(--ink); color: var(--paper); }
.ar-menu-section { scroll-margin-top: calc(var(--header-h) + 72px); }
.ar-menu-section.is-chips { grid-column: 1 / -1; }
.ar-menu-title { font-size: clamp(2rem, 4vw, 2.8rem); padding-bottom: .6rem; border-bottom: 2px solid var(--whiskey); margin-bottom: 1.2rem; }
.ar-menu-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.05rem; }
.ar-menu-line { display: flex; align-items: baseline; gap: .6rem; }
.ar-menu-name { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: .02em; line-height: 1.1; }
.ar-menu-dots { flex: 1; min-width: 1.5rem; border-bottom: 2px dotted rgba(26, 21, 18, .3); transform: translateY(-.3em); }
.ar-menu-price { font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--whiskey-ink); }
.ar-menu-desc { color: var(--ink-muted); font-size: .93rem; margin-top: .2rem; max-width: 34em; }
.ar-menu-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.ar-menu-chips li { font-size: .85rem; font-weight: 600; padding: .35em .9em; border: 1.5px solid var(--ink); border-radius: 2px; }
.ar-menu-note { margin-top: 1.1rem; padding: .9rem 1rem; border-left: 3px solid var(--whiskey); background: var(--paper-2); font-size: .86rem; color: var(--ink-muted); }
.ar-menu-note p { margin: 0; }
.menu-foot { grid-column: 1 / -1; margin-top: clamp(2rem, 5vw, 3rem); display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--paper-line); padding-top: 1.6rem; }
.menu-foot p { color: var(--ink-muted); }
.menu-foot p strong { color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: var(--brick); border-color: var(--brick); }

/* ---------- Logged-in admin bar ---------- */
.admin-bar .site-header { top: 32px; }
.admin-bar .ar-menu-nav { top: calc(var(--header-h) + 32px); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .visit .wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .map { grid-column: 1 / -1; min-height: 280px; }
  .site-footer .wrap { grid-template-columns: auto 1fr auto; }
  .footer-legal { grid-column: 1 / -1; border-left: 0; padding-left: 0; text-align: center; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .brand-name { font-size: 1.7rem; }
  .brand-kind { font-size: .58rem; }
  .nav-toggle { display: grid; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: var(--paper); border-bottom: 1px solid var(--paper-line); box-shadow: 0 12px 24px -12px rgba(0,0,0,.35); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .4rem var(--gutter) 1rem; }
  .site-nav a { padding: .9rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--paper-line); }
  .site-nav .current-menu-item > a, .site-nav a[aria-current="page"] { border-bottom-color: var(--paper-line); }

  .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 5 / 2; }
  .about { grid-template-columns: 1fr; }
  .about-photo { min-height: 0; aspect-ratio: 16 / 10; }
  .dishes { grid-template-columns: 1fr; max-width: 34rem; }
  .ar-menu { grid-template-columns: 1fr; }
  .ar-menu-line { flex-wrap: wrap; }
  .ar-menu-dots { display: none; }
  .ar-menu-price { margin-left: auto; }
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .ar-menu-nav { top: calc(var(--header-h) + 46px); }
}
@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .topbar .wrap { grid-template-columns: 1fr auto; }
  .topbar-addr, .topbar .social { display: none; }
  .visit .wrap { grid-template-columns: 1fr; }
  .visit-contact { padding-left: 0; border-left: 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
  .event-row { grid-template-columns: 52px minmax(0, 1fr) 20px; gap: .9rem; padding-inline: 0; }
  .event-day { display: none; }
  .event-meta i { margin-inline: .5em; }
  .site-footer .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .action-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(14, 11, 9, .96); border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 54px; border-radius: 2px; text-decoration: none; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cream);
    background: var(--panel);
  }
  .action-bar a:first-child { background: var(--whiskey); color: var(--ink); }
  .action-bar .icon { width: 20px; height: 20px; }
}
@media (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
  .admin-bar .ar-menu-nav { top: var(--header-h); }
  .tile { aspect-ratio: 2 / 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn .icon, .tile .photo, .tile-label .icon, .event-row, .event-go .icon { transition: none; }
  .tile:hover .photo { transform: none; }
}

/* =====================================================================
   Menu page (page-menu.php): sidebar on desktop, top strip on phones
   ===================================================================== */
.menu-hero {
  position: relative; overflow: hidden;
  background-color: var(--smoke);
  background-image:
    linear-gradient(90deg, rgba(14,11,9,.94) 0%, rgba(14,11,9,.78) 45%, rgba(14,11,9,.25) 100%),
    radial-gradient(ellipse 50% 90% at 80% 40%, rgba(217,152,47,.28), transparent 70%),
    var(--photo, none);
  background-size: cover; background-position: center right;
}
.menu-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--grain); opacity: .08; mix-blend-mode: overlay; }
.menu-hero .wrap { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 88px); }
.menu-hero h1 { margin-top: .9rem; font-size: clamp(3.4rem, 8vw, 6rem); color: var(--cream); }
.menu-hero .lede { margin-top: 1rem; max-width: 28em; font-size: clamp(1rem, 1.6vw, 1.2rem); color: #e4d9c6; }

.menu-body { background: var(--paper); color: var(--ink); }
.menu-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; padding-block: 0 clamp(48px, 7vw, 88px); }

/* Sidebar */
.menu-aside { display: flex; flex-direction: column; gap: 1.5rem; align-self: stretch; }
.menu-tabs { position: sticky; top: var(--header-h); z-index: 5; background: var(--smoke); padding: .6rem; }
.menu-tabs ul { list-style: none; margin: 0; padding: 0; }
.menu-tabs a { display: block; padding: .75rem .9rem; font-family: var(--display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; color: var(--cream); border-bottom: 1px solid var(--line); transition: background .15s, color .15s; }
.menu-tabs li:last-child a { border-bottom: 0; }
.menu-tabs a:hover { color: var(--whiskey-hi); }
.menu-tabs a.is-active { background: var(--whiskey); color: var(--ink); border-bottom-color: var(--whiskey); }
.menu-promo { position: relative; aspect-ratio: 3 / 5; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; color: var(--cream); }
.menu-promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(14,11,9,.85)); }
.menu-promo-text, .menu-promo .rule { position: relative; z-index: 1; }
.menu-promo-text { font-family: var(--display); font-weight: 900; font-size: 3rem; line-height: .88; text-transform: uppercase; }
.menu-promo .rule { margin-top: 1rem; }

/* Sections */
.menu-sections { padding-top: clamp(40px, 5vw, 64px); }
.menu-section { scroll-margin-top: calc(var(--header-h) + 24px); }
.menu-section + .menu-section { margin-top: clamp(3rem, 6vw, 4.5rem); }
.menu-section h2 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
.menu-section h2 .rule { display: inline-block; vertical-align: middle; width: clamp(32px, 4vw, 56px); margin-left: .3em; }
.menu-section-intro { margin-top: .8rem; max-width: 36rem; color: var(--ink-muted); font-size: .93rem; }

.menu-items { list-style: none; margin: 1.4rem 0 0; padding: 0; border-top: 1px solid var(--paper-line); }
.menu-entry { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .4rem 1.5rem; align-items: start; padding: 1.1rem 0; border-bottom: 1px solid var(--paper-line); }
.menu-entry.has-thumb { grid-template-columns: 76px minmax(0, 1fr) auto; }
.menu-thumb { width: 76px; height: 76px; object-fit: cover; border-radius: 2px; }
.menu-entry h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: .02em; line-height: 1.05; }
.menu-item-text p { margin-top: .3rem; color: var(--ink-muted); font-size: .9rem; max-width: 34rem; }
.menu-price { white-space: nowrap; text-align: right; font-family: var(--display); font-weight: 800; font-size: 1.25rem; line-height: 1.1; letter-spacing: .02em; font-variant-numeric: tabular-nums; }

.menu-chips { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.menu-chips li { padding: .45em 1em; border: 1.5px solid var(--ink); border-radius: 2px; font-size: .85rem; font-weight: 600; }

.menu-addons { margin-top: 2rem; }
.menu-addons h3 { font-size: 1.8rem; }
.menu-addons h3 .rule { display: inline-block; vertical-align: middle; width: 40px; margin-left: .3em; }
.menu-addons ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2.5rem; }
.menu-addons li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--paper-line); font-size: .86rem; color: var(--ink-muted); }
.menu-addon-price { flex: none; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

.menu-empty { padding-block: 2rem; color: var(--ink-muted); }
.menu-sections .menu-foot { margin-top: clamp(3rem, 6vw, 4.5rem); }
.admin-bar .menu-tabs { top: calc(var(--header-h) + 32px); }

@media (max-width: 1000px) {
  .menu-layout { grid-template-columns: 190px minmax(0, 1fr); }
  .menu-addons ul { grid-template-columns: 1fr; }
}

/* Phones and small tablets: the section list becomes a full-width strip under the header. */
@media (max-width: 860px) {
  .menu-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .menu-aside { display: block; position: sticky; top: var(--header-h); z-index: 20; margin-inline: calc(-1 * var(--gutter)); }
  .menu-tabs { position: static; padding: 0; box-shadow: 0 8px 16px -10px rgba(0,0,0,.5); }
  .menu-tabs ul { display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding-inline: calc(var(--gutter) - .4rem); }
  .menu-tabs ul::-webkit-scrollbar { display: none; }
  .menu-tabs li { flex: none; scroll-snap-align: start; }
  .menu-tabs a { padding: .95rem .8rem; font-size: .95rem; border-bottom: 3px solid transparent; }
  .menu-tabs li:last-child a { border-bottom: 3px solid transparent; }
  .menu-tabs a.is-active { background: transparent; color: var(--whiskey-hi); border-bottom-color: var(--whiskey); }
  .menu-promo { display: none; }
  .menu-section { scroll-margin-top: calc(var(--header-h) + 64px); }
  .admin-bar .menu-tabs { top: auto; }
  .admin-bar .menu-aside { top: calc(var(--header-h) + 32px); }
}
@media (max-width: 782px) { .admin-bar .menu-aside { top: calc(var(--header-h) + 46px); } }
@media (max-width: 600px) {
  .admin-bar .menu-aside { top: var(--header-h); }
  .menu-entry.has-thumb { grid-template-columns: 60px minmax(0, 1fr) auto; gap: .3rem 1rem; }
  .menu-thumb { width: 60px; height: 60px; }
  .menu-price { font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) { .menu-tabs a { transition: none; } }

/* =====================================================================
   Events page (events.php)
   ===================================================================== */
.ev-hero {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: clamp(420px, 44vw, 560px);
  background-color: var(--smoke);
  background-image:
    linear-gradient(90deg, rgba(14,11,9,.95) 0%, rgba(14,11,9,.82) 40%, rgba(14,11,9,.30) 80%, rgba(14,11,9,.15) 100%),
    radial-gradient(ellipse 50% 80% at 80% 40%, rgba(217,152,47,.30), transparent 70%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(168,54,31,.22), transparent 70%),
    var(--photo, none);
  background-size: cover; background-position: center right;
}
.ev-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--grain); opacity: .08; mix-blend-mode: overlay; }
.ev-hero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 96px); }
.ev-hero .wrap > * { max-width: 40rem; }
.ev-label { display: flex; align-items: center; gap: .8em; }
.ev-label::after { content: ""; width: 40px; height: 2px; background: var(--whiskey); }
.ev-label.is-now::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #6fcf7a; box-shadow: 0 0 0 4px rgba(111, 207, 122, .22); }
.ev-hero h2 { margin-top: 1rem; font-size: clamp(3rem, 7vw, 5.4rem); line-height: .88; color: var(--cream); }
.ev-when { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1.4rem; font-weight: 600; font-size: .95rem; color: var(--cream); }
.ev-when span { display: inline-flex; align-items: center; gap: .55em; }
.ev-when span + span { padding-left: 1.6rem; border-left: 1px solid rgba(244, 236, 220, .25); }
.ev-when .icon { width: 20px; height: 20px; color: var(--whiskey); }
.ev-summary { margin-top: 1.2rem; max-width: 34rem; color: #e4d9c6; font-size: 1.02rem; }
.ev-hero .btn { margin-top: 1.9rem; }
.ev-hero .btn .icon-facebook { width: 16px; height: 16px; }
.ev-hero .btn:hover .icon-facebook { transform: none; }

.ev-list { padding-block: clamp(56px, 8vw, 96px); background: var(--paper); color: var(--ink); }
.ev-list .eyebrow { color: var(--whiskey-ink); }
.ev-list .section-intro { color: var(--ink-muted); }
.ev-rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--paper-line); }
.ev-rows > li { border-bottom: 1px solid var(--paper-line); }
.ev-row { display: grid; grid-template-columns: 64px 200px minmax(0, 1fr) auto; gap: 1.6rem; align-items: center; padding: 1.2rem .6rem; color: var(--ink); text-decoration: none; transition: background .2s; }
.ev-row:hover { background: rgba(255, 255, 255, .45); }
.ev-date { display: flex; flex-direction: column; align-items: center; line-height: 1; text-align: center; }
.ev-date span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); }
.ev-date strong { font-family: var(--display); font-weight: 900; font-size: 2.5rem; color: var(--brick); margin-block: .1rem; }
.ev-date span:last-child { color: var(--ink-muted); }
.ev-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px; }
.ev-text { display: flex; flex-direction: column; gap: .3rem; }
.ev-title { font-family: var(--display); font-weight: 800; font-size: 1.6rem; line-height: 1; text-transform: uppercase; }
.ev-time { font-size: .85rem; font-weight: 700; }
.ev-desc { font-size: .88rem; color: var(--ink-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ev-cta { color: var(--ink); white-space: nowrap; }
.ev-row:hover .ev-cta { background: var(--whiskey); color: var(--ink); }
.ev-row:hover .ev-cta .icon { transform: translateX(3px); }

.ev-empty { padding: 1.4rem .6rem; border-block: 1px solid var(--paper-line); color: var(--ink-muted); }
.ev-empty a { color: var(--brick); font-weight: 600; }
.ev-regulars, .ev-recent { margin-top: clamp(2.4rem, 5vw, 3.5rem); }
.ev-regulars h3, .ev-recent h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.ev-regulars h3 .rule, .ev-recent h3 .rule { display: inline-block; vertical-align: middle; width: 40px; margin-left: .3em; }
.ev-regulars ul { list-style: none; margin: 1.1rem 0 0; padding: 0; border-top: 1px solid var(--paper-line); }
.ev-regulars li { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 1rem; padding: 1rem .6rem; border-bottom: 1px solid var(--paper-line); }
.ev-regular-day { font-family: var(--display); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; color: var(--brick); }
.ev-regulars strong { display: block; font-family: var(--display); font-weight: 800; font-size: 1.4rem; line-height: 1; text-transform: uppercase; }
.ev-regulars li span span { display: block; margin-top: .3rem; font-size: .88rem; color: var(--ink-muted); }
.ev-recent ul { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
.ev-recent a { display: block; color: var(--ink); text-decoration: none; }
.ev-recent-photo { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; }
.ev-recent-photo .photo { filter: saturate(.8); transition: filter .2s; }
.ev-recent a:hover .ev-recent-photo .photo { filter: none; }
.ev-recent-date { display: block; margin-top: .7rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.ev-recent strong { display: block; margin-top: .2rem; font-family: var(--display); font-weight: 800; font-size: 1.25rem; line-height: 1.05; text-transform: uppercase; }

@media (max-width: 1000px) {
  .ev-row { grid-template-columns: 56px 150px minmax(0, 1fr); }
  .ev-cta { display: none; }
}
@media (max-width: 860px) {
  .ev-recent ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .ev-row { grid-template-columns: 48px minmax(0, 1fr); gap: 1rem; padding-inline: 0; align-items: start; }
  .ev-thumb { grid-column: 2; grid-row: 1; }
  .ev-date { grid-column: 1; grid-row: 1 / span 2; }
  .ev-text { grid-column: 2; grid-row: 2; }
  .ev-date strong { font-size: 2rem; }
  .ev-title { font-size: 1.35rem; }
  .ev-when span + span { padding-left: 0; border-left: 0; }
  .ev-regulars li { grid-template-columns: 1fr; gap: .3rem; padding-inline: 0; }
}
@media (prefers-reduced-motion: reduce) { .ev-row, .ev-recent-photo .photo { transition: none; } }
