/* Localé — shared site styles */
:root {
  --bg: #16120F;
  --bg-raised: #1E1915;
  --bg-card: #211C18;
  --border: #352E27;
  --text: #F4EEE6;
  --text-muted: #A99C8C;
  --text-soft: #CFC4B4;
  --gold: #E5B23C;
  --gold-soft: #C99A2E;
  --blue: #4AA8DE;
  --green: #6FBF73;
  --red: #E07856;
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: dark;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #16120F; padding: .6rem 1rem; font-weight: 600; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 18, 15, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(53, 46, 39, .6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: 1160px; margin: 0 auto; padding: .9rem 1.25rem;
}
.logo {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; letter-spacing: .35em; color: var(--text); font-size: 1rem;
}
.logo:hover { text-decoration: none; }
.logo .tri {
  width: 0; height: 0; flex: none;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-bottom: 15px solid var(--gold);
}
nav.main { display: flex; gap: 1.3rem; align-items: center; flex-wrap: wrap; }
nav.main a { color: var(--text-muted); font-size: .95rem; padding: .25rem 0; }
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--text); text-decoration: none; }
nav.main a[aria-current="page"] { border-bottom: 2px solid var(--gold); }
@media (max-width: 640px) { nav.main a.hide-sm { display: none; } }

/* ---------- Layout ---------- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 820px; }
main { min-height: 60vh; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
p { color: var(--text-soft); }
.eyebrow {
  color: var(--gold); font-weight: 700; letter-spacing: .22em; font-size: .78rem;
  text-transform: uppercase;
}
.sub { color: var(--text-muted); font-size: 1.08rem; max-width: 640px; }

/* ---------- Hero (home) ---------- */
.hero { text-align: center; padding: 3.2rem 1.25rem 1.6rem; max-width: 900px; margin: 0 auto; }
.hero .sub { margin: 1rem auto 0; }
.searchbar {
  display: flex; gap: .6rem; max-width: 560px; margin: 1.8rem auto 0;
}
.searchbar input {
  flex: 1; min-width: 0; font-size: 1rem; color: var(--text);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: .85rem 1.3rem;
}
.searchbar input::placeholder { color: var(--text-muted); }
.chips {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin: 1.1rem auto 0; max-width: 760px;
}
.chip {
  cursor: pointer; font-size: .88rem; color: var(--text-soft);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: .45rem 1rem;
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--font-body);
}
.chip:hover { border-color: var(--gold-soft); color: var(--text); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #16120F; font-weight: 600; }

/* ---------- Venue grid & cards ---------- */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.15rem; padding: 1.5rem 0 2.5rem;
}
.vcard {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease;
}
.vcard:hover { transform: translateY(-3px); border-color: var(--gold-soft); }
.vcard a.cover { display: block; color: inherit; }
.vcard a.cover:hover { text-decoration: none; }
.vcard .photo {
  aspect-ratio: 4 / 3; width: 100%; object-fit: cover;
  background: var(--bg-raised);
}
.vcard .body { padding: .95rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.vcard h3 { font-size: 1.12rem; }
.vcard .meta { color: var(--text-muted); font-size: .86rem; }
.vcard .stars { color: var(--gold); font-size: .88rem; letter-spacing: .05em; }
.vcard .stars .count { color: var(--text-muted); letter-spacing: 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-top: 2.2rem;
}
.section-head .more { color: var(--gold); font-size: .92rem; white-space: nowrap; }
.result-count { color: var(--text-muted); font-size: .9rem; padding-top: .8rem; }

/* ---------- Collections scroller ---------- */
.scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 300px);
  gap: 1rem; overflow-x: auto; padding: 1.2rem .2rem 1.4rem;
  scroll-snap-type: x proximity; scrollbar-width: thin;
}
.scroller .ccard {
  scroll-snap-align: start; position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 16 / 10; display: flex; align-items: flex-end;
  border: 1px solid var(--border);
}
.ccard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ccard .shade {
  position: relative; width: 100%; padding: 2.2rem 1.1rem .95rem;
  background: linear-gradient(transparent, rgba(12, 9, 7, .88));
}
.ccard h3 { font-size: 1.15rem; color: #fff; }
.ccard p { font-size: .85rem; color: #E8DFD2; }
.ccard a { position: absolute; inset: 0; z-index: 2; }

/* ---------- Venue page ---------- */
.crumbs { font-size: .85rem; color: var(--text-muted); padding: 1.1rem 0 .4rem; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--text); }
.gallery {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(88vw, 640px);
  gap: .7rem; overflow-x: auto; scroll-snap-type: x mandatory;
  border-radius: var(--radius); padding-bottom: .4rem; scrollbar-width: thin;
}
.gallery img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); scroll-snap-align: center;
  background: var(--bg-raised);
}
.vtitle { padding: 1.4rem 0 .2rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.vtitle h1 { margin-right: auto; }
.badge-open, .badge-closed {
  font-size: .8rem; font-weight: 700; padding: .28rem .8rem; border-radius: 100px; letter-spacing: .04em;
}
.badge-open { color: #123613; background: var(--green); }
.badge-closed { color: #3A1508; background: var(--red); }
.vmeta { color: var(--text-muted); font-size: .98rem; }
.vmeta .stars { color: var(--gold); }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; padding: 1.2rem 0; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-weight: 600; font-size: .95rem; border-radius: 100px; padding: .72rem 1.5rem;
  border: 1px solid var(--border); color: var(--text); background: var(--bg-card);
  transition: border-color .2s, background .2s, opacity .2s;
}
.btn:hover { text-decoration: none; border-color: var(--gold-soft); }
.btn.primary { background: var(--gold); border-color: var(--gold); color: #16120F; }
.btn.primary:hover { opacity: .92; }
.btn svg { width: 17px; height: 17px; flex: none; }
.vbody { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (max-width: 820px) { .vbody { grid-template-columns: 1fr; } }
.vdesc { font-size: 1.06rem; }
.panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.3rem; margin-bottom: 1.2rem;
}
.panel h2 { font-size: 1.15rem; margin-bottom: .7rem; }
.hours { list-style: none; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .92rem; color: var(--text-soft); padding: .18rem 0;
}
.hours li span:last-child { text-align: right; }
.hours li.today { color: var(--text); font-weight: 600; }
.hours li.today::before { content: "▸ "; color: var(--gold); }
.contact-list { list-style: none; font-size: .95rem; }
.contact-list li { padding: .3rem 0; color: var(--text-soft); display: flex; gap: .6rem; }
.contact-list svg { width: 17px; height: 17px; flex: none; margin-top: .28rem; color: var(--gold); }
.map-embed {
  width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius-sm);
  filter: grayscale(.25) contrast(1.02); margin-top: .6rem;
}
.menu-section h3 {
  font-size: 1.02rem; color: var(--gold); margin: 1.1rem 0 .4rem;
  letter-spacing: .04em;
}
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: .34rem 0; border-bottom: 1px dashed rgba(53,46,39,.7); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .n { color: var(--text); font-weight: 500; }
.menu-item .d { color: var(--text-muted); font-size: .86rem; }
.menu-item .p { color: var(--text-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.review { border-left: 3px solid var(--gold-soft); padding: .2rem 0 .2rem 1rem; margin: .9rem 0; }
.review .who { color: var(--text-muted); font-size: .84rem; margin-top: .3rem; }
.review .stars { color: var(--gold); font-size: .85rem; }

/* ---------- App promo ---------- */
.promo {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.2rem 1.6rem; margin: 2.5rem 0; text-align: center;
}
.promo h2 { margin-bottom: .5rem; }
.promo p { max-width: 560px; margin: 0 auto; }
.promo .btn { margin-top: 1.3rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; padding: 1rem 0 1.4rem; }
.feature { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.feature h3 { font-size: 1.03rem; margin-bottom: .35rem; }
.feature p { font-size: .92rem; }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--border); margin-top: 3rem;
  padding: 2rem 1.25rem 2.6rem; color: var(--text-muted); font-size: .86rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
footer.site h3 { font-size: .92rem; color: var(--text); margin-bottom: .5rem; font-family: var(--font-body); }
footer.site ul { list-style: none; }
footer.site li { padding: .14rem 0; }
footer.site a { color: var(--text-muted); }
footer.site a:hover { color: var(--text); }
.footer-legal { max-width: 1160px; margin: 1.6rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(53,46,39,.5); }
