/* ===== bistro-modern — upscale modern bistro ===== */
:root{
  --cream: #faf7f2;
  --cream-deep: #f2ece1;
  --ink: #25211c;
  --ink-soft: #4a4views;
  --muted: #8a8074;
  --line: #e2d9ca;
  --white: #ffffff;
  --accent: #b07d3c; /* overridden inline from config */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.wrap{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.wrap.narrow{ max-width: 760px; }
.center{ text-align: center; }

/* ---- Headings / shared ---- */
.eyebrow{
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow-light{ color: var(--cream); opacity: .85; }
.section-title{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.section-title.light{ color: var(--cream); }
.rule-center{
  width: 64px; height: 2px;
  background: var(--accent);
  margin: 22px auto 30px;
}
.rule-center.light{ background: var(--cream); opacity: .6; }

.section{ padding: 84px 0; }

/* ---- Header ---- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 6px 0;
}
.site-header.scrolled{
  background: rgba(250,247,242,.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px);
}
.header-inner{ display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo{ height: 40px; width: auto; }
.brand-name{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .02em;
}
/* hero is light; header text on hero should read on dark, scrolled on cream */
.site-header:not(.scrolled) .brand-name,
.site-header:not(.scrolled) .site-nav a{ color: var(--cream); }
.site-header.scrolled .brand-name,
.site-header.scrolled .site-nav a{ color: var(--ink); }

.site-nav{ display: flex; gap: 28px; align-items: center; }
.site-nav a{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after{
  content:""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width .25s ease;
}
.site-nav a:hover::after{ width: 100%; }
.site-nav a:hover{ color: var(--accent); }

.nav-toggle{
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 38px; height: 32px; padding: 6px;
}
.nav-toggle span{
  display: block; height: 2px; width: 100%;
  background: var(--cream); margin: 5px 0;
  transition: .25s ease;
}
.site-header.scrolled .nav-toggle span{ background: var(--ink); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero{
  position: relative;
  min-height: 92vh;
  margin-top: -76px; /* pull under sticky header */
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #2a2620;
  text-align: center;
}
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,13,.55), rgba(20,17,13,.42) 45%, rgba(20,17,13,.62));
}
.hero-content{ position: relative; z-index: 2; padding: 120px 22px 60px; max-width: 820px; }
.hero-eyebrow{
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .78rem;
  font-weight: 500;
  margin: 0 0 22px;
  opacity: .92;
}
.hero-title{
  font-family: var(--serif);
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-rule{
  width: 80px; height: 2px; background: var(--accent);
  margin: 30px auto 34px;
}
.btn{
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-ghost{
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
}
.btn-ghost:hover{ background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-solid{
  background: var(--accent); color: #fff; border: 1.5px solid var(--accent);
}
.btn-solid:hover{ background: transparent; color: var(--accent); }

/* ---- Welcome ---- */
.welcome{ background: var(--cream); }
.welcome-block{ margin-top: 14px; }
.welcome-block + .welcome-block{ margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--line); }
.welcome-block-heading{
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  margin: 0 0 14px;
}
.welcome-text{
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 640px;
}
.btn-row{ margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Menu sections ---- */
.menu-section.food{ background: var(--cream-deep); }
.menu-section.cocktails{ background: var(--cream); }
.menu-group{ margin-top: 56px; }
.menu-group:first-of-type{ margin-top: 48px; }
.menu-group-head{ text-align: center; margin-bottom: 30px; }
.menu-tab{
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.menu-tab::after{
  content:""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 38px; height: 2px; background: var(--accent);
}
.menu-note{
  color: var(--muted);
  font-style: italic;
  font-size: .95rem;
  margin: 12px 0 0;
}
.menu-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 56px;
  max-width: 980px;
  margin: 0 auto;
}
.menu-item{ display: flex; gap: 16px; align-items: flex-start; }
.menu-thumb{
  width: 62px; height: 62px; object-fit: cover;
  border-radius: 10px; flex: 0 0 auto;
  border: 1px solid var(--line);
}
.menu-item-body{ flex: 1 1 auto; min-width: 0; }
.menu-item-title{
  display: flex; align-items: baseline; gap: 8px;
}
.mi-name{
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mi-leader{
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  min-width: 20px;
}
.menu-item-desc{
  color: var(--muted);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 5px 0 0;
}
.menu-footer-note{
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: .9rem;
  margin: 32px auto 0;
  max-width: 620px;
}

/* ---- Happy hour band ---- */
.happy-band{
  background: var(--ink);
  color: var(--cream);
}
.happy-hours{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 10px 0 0;
}
.happy-pricing{ margin: 8px 0 34px; }
.happy-price-line{
  font-size: 1.05rem;
  font-weight: 300;
  margin: 6px 0;
  color: var(--cream);
}
.happy-lists{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 10px;
}
.happy-list-heading{
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 12px;
  text-align: center;
}
.happy-list ul{ list-style: none; margin: 0; padding: 0; text-align: center; }
.happy-list li{
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 300;
  color: var(--cream);
}
.happy-list li:last-child{ border-bottom: 0; }

/* ---- Events ---- */
.events{ background: var(--cream); }
.narrow-inner{ max-width: 720px; margin: 0 auto; }
.events-intro{
  font-size: 1.06rem; font-weight: 300; line-height: 1.85;
  color: var(--ink); margin: 0 auto;
}
.events-tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 18px 0 0;
}
.events-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 54px;
}
.event-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover{ transform: translateY(-4px); box-shadow: 0 12px 30px rgba(40,30,15,.1); }
.event-card-img{ aspect-ratio: 16/10; overflow: hidden; }
.event-card-img img{ width: 100%; height: 100%; object-fit: cover; }
.event-card-body{ padding: 24px; }
.event-day{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.event-title{
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.event-text{
  color: var(--muted);
  font-weight: 300;
  font-size: .96rem;
  margin: 0;
}
.events-closers{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.closer{
  padding: 30px 24px;
  border-top: 2px solid var(--accent);
  background: var(--cream-deep);
}
.closer-heading{
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 500;
  margin: 0 0 10px;
}
.closer-text{ color: var(--muted); font-weight: 300; margin: 0; }

/* ---- Footer ---- */
.site-footer{ background: var(--ink); color: var(--cream); padding-top: 72px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo{ height: 52px; width: auto; margin-bottom: 18px; }
.footer-name{
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 600;
  margin: 0 0 16px; color: var(--cream);
}
.footer-tagline{
  color: rgba(250,247,242,.7);
  font-weight: 300;
  max-width: 320px;
  margin: 0 0 22px;
}
.social-row{ display: flex; flex-wrap: wrap; gap: 18px; }
.social-row a{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.social-row a:hover{ color: var(--accent); border-color: var(--accent); }
.footer-heading{
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 500;
  color: var(--accent);
  margin: 0 0 18px;
}
.hours-block{ margin-bottom: 20px; }
.hours-label{
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(250,247,242,.6);
  margin-bottom: 8px;
}
.hours-table{ width: 100%; border-collapse: collapse; }
.hours-table td{
  padding: 5px 0;
  font-weight: 300;
  color: var(--cream);
  font-size: .92rem;
}
.hours-table td:last-child{ text-align: right; color: rgba(250,247,242,.8); }
.contact-line{
  margin: 0 0 10px;
  font-weight: 300;
  color: rgba(250,247,242,.85);
  line-height: 1.6;
}
.contact-line a:hover{ color: var(--accent); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p{
  margin: 0;
  font-size: .82rem;
  color: rgba(250,247,242,.55);
  letter-spacing: .04em;
}

/* ---- Responsive ---- */
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 760px){
  .section{ padding: 60px 0; }
  .menu-list{ grid-template-columns: 1fr; gap: 22px; }
  .nav-toggle{ display: block; }
  .site-nav{
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(37,33,28,.98);
    backdrop-filter: blur(8px);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 22px;
  }
  .site-nav.open{ max-height: 420px; padding: 10px 22px 20px; }
  .site-header:not(.scrolled) .site-nav a,
  .site-header.scrolled .site-nav a{ color: var(--cream); }
  .site-nav a{
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: .12em;
  }
  .site-nav a::after{ display: none; }
  .hero{ min-height: 88vh; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
  .hero-content{ padding-top: 100px; }
}