/* ═══════════════════════════════════════════════════════════════
   ROOTS — Upscale farmhouse. Dark forest green, warm amber, serif.
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1a2e1a;
  --forest-m: #243624;
  --forest-l: #2f4a2f;
  --cream:    #f5f0e8;
  --cream-d:  #ede5d5;
  --amber:    #c47d2a;
  --amber-h:  #a86520;
  --text:     #1e1e1e;
  --text-mid: #5a5a5a;
  --text-dim: #999;
  --border:   #ddd5c5;
  --white:    #ffffff;
  --radius:   10px;
  --nav-h:    68px;
  --serif:    'Georgia', 'Times New Roman', serif;
  --sans:     system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--text);
       line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: var(--amber); text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--forest);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.nav-brand {
  font-family: var(--serif); font-size: 1.25rem;
  color: #fff; letter-spacing: .04em;
}
.nav-brand em { color: var(--amber); font-style: normal; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
               letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover { color: var(--amber); }
.nav-cta { background: var(--amber) !important; color: #fff !important;
           padding: .4rem 1.1rem; border-radius: 6px; transition: background .2s !important; }
.nav-cta:hover { background: var(--amber-h) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer;
                 padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 199;
  background: var(--forest); padding: 2rem;
  transform: translateX(-100%); transition: transform .3s;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { color: rgba(255,255,255,.85); font-size: 1.2rem; font-weight: 600;
                padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

/* ── Hero ────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-m) 55%, var(--forest-l) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .2em;
                text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.hero-title { font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem);
              color: #fff; font-weight: 400; line-height: 1.05; margin-bottom: 1rem; letter-spacing: -.01em; }
.hero-tagline { font-size: 1.1rem; color: rgba(255,255,255,.65); font-style: italic;
                margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem;
       border-radius: 8px; font-size: .95rem; font-weight: 600; cursor: pointer;
       border: 2px solid transparent; transition: all .2s; text-decoration: none; }
.btn-fill    { background: var(--amber); color: #fff; }
.btn-fill:hover { background: var(--amber-h); color: #fff; }
.btn-ring    { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ring:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.hero-status { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: .5rem;
               font-size: .82rem; font-weight: 600; padding: .4rem 1rem;
               border-radius: 20px; letter-spacing: .04em; }
.status-open   { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.35); }
.status-closed { background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* ── Section base ────────────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .18em;
           text-transform: uppercase; color: var(--amber); margin-bottom: .5rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
                 font-weight: 400; line-height: 1.2; }
.section-header { margin-bottom: 2.5rem; }

/* ── Daily (dark) ────────────────────────────────────────────────── */
#daily { background: var(--forest); color: #fff; }
.daily-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; }
.daily-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
              border-radius: var(--radius); padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.daily-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; }
.daily-card-name  { font-size: 1rem; font-weight: 600; }
.daily-card-price { color: var(--amber); font-weight: 700; white-space: nowrap; }
.daily-card-desc  { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.daily-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .07em;
             text-transform: uppercase; padding: .2rem .6rem; border-radius: 4px;
             background: rgba(196,125,42,.25); color: var(--amber); margin-top: .25rem; }
.daily-note { font-size: .8rem; color: rgba(255,255,255,.4); font-style: italic; margin-top: 1.25rem; }
.hh-bar { margin-top: 2rem; background: rgba(196,125,42,.12); border: 1px solid rgba(196,125,42,.3);
          border-radius: var(--radius); padding: 1rem 1.5rem;
          display: none; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hh-label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.hh-time  { font-size: .85rem; color: rgba(255,255,255,.7); }
.hh-desc  { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ── Events ──────────────────────────────────────────────────────── */
#events { background: var(--cream); }
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
              padding: 1.25rem 1.5rem; display: grid; grid-template-columns: 64px 1fr;
              gap: 1.25rem; align-items: center; box-shadow: 0 1px 6px rgba(0,0,0,.05);
              transition: box-shadow .2s; }
.event-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.event-date { background: var(--forest); color: #fff; border-radius: 8px;
              padding: .7rem .4rem; text-align: center; }
.event-month { font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--amber); }
.event-day   { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-dow   { font-size: .65rem; color: rgba(255,255,255,.55); }
.event-info  { min-width: 0; }
.event-title { font-weight: 700; font-size: .97rem; }
.event-time  { font-size: .8rem; color: var(--text-mid); margin-top: .15rem; }
.event-desc  { font-size: .85rem; color: var(--text-mid); margin-top: .35rem; line-height: 1.5; }
.event-tag   { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
               text-transform: uppercase; padding: .2rem .55rem; border-radius: 4px;
               background: #ede9ff; color: #5b4fcf; margin-top: .4rem; }
.event-tag.music   { background: #ede9ff; color: #5b4fcf; }
.event-tag.event   { background: #e8f5e9; color: #2e7d32; }
.event-tag.special { background: #fff3ee; color: #b33a00; }

/* ── Menu ────────────────────────────────────────────────────────── */
#menu { background: var(--forest); color: #fff; }
.menu-period-label { font-size: .75rem; font-weight: 700; letter-spacing: .15em;
                     text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2rem; }
.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
.menu-cat { margin-bottom: 2.5rem; }
.menu-cat-name { font-family: var(--serif); font-size: 1.15rem; color: var(--amber);
                 padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline;
             gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.menu-item:last-child { border-bottom: none; }
.menu-item-name  { font-size: .92rem; font-weight: 600; }
.menu-item-desc  { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .15rem; }
.menu-item-price { color: var(--amber); font-weight: 700; font-size: .92rem; white-space: nowrap; flex-shrink: 0; }
.menu-updated    { font-size: .78rem; color: rgba(255,255,255,.3); font-style: italic; margin-bottom: 2rem; }

/* ── Hours ───────────────────────────────────────────────────────── */
#hours { background: var(--cream-d); }
.hours-inner { max-width: 520px; }
.hours-table { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.75rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center;
             padding: .85rem 1.1rem; background: var(--white);
             border: 1px solid var(--border); border-radius: 8px; font-size: .92rem; }
.hours-row.today  { border-color: var(--amber); background: #fff8f0; }
.hours-days   { font-weight: 600; }
.hours-times  { color: var(--text-mid); }
.hours-note   { font-size: .82rem; color: var(--text-dim); margin-top: 1rem; font-style: italic; }

/* ── Location ────────────────────────────────────────────────────── */
#location { background: var(--forest-m); color: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.location-line { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem;
                 font-size: .95rem; color: rgba(255,255,255,.8); }
.location-line strong { color: #fff; min-width: 70px; }
.map-box { border-radius: var(--radius); overflow: hidden; height: 270px;
           border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer { background: var(--forest); color: rgba(255,255,255,.4); text-align: center;
         padding: 2rem; font-size: .8rem; border-top: 1px solid rgba(255,255,255,.06); }
footer a { color: rgba(255,255,255,.4); }
footer a:hover { color: var(--amber); }
.footer-powered { margin-top: .4rem; font-size: .72rem; color: rgba(255,255,255,.2); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .menu-cats { grid-template-columns: 1fr; gap: 0; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .event-card { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .menu-cats { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
}
