:root{
  /* ink + lines (slightly brown, not pure black) */
  --ink:#1b1206;
  --line: rgba(92,55,12,.45);

  --shadow: 0 6px 24px rgba(0,0,0,.12);
  --radius: 14px;

  /* beer palette */
  --pageBg: #fbf1dc;      /* warm creamy foam */
  --sectionBg: #f7dda7;   /* light wheat */
  --cardBg: rgba(255,255,255,.62); /* “paper” on top of wheat */
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--pageBg);
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247,241,227,.92);
  backdrop-filter: blur(8px);
  padding: 18px 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center; 
}


.brand{
  text-align: center;
  margin-bottom: 12px;
  align-items: center;
  text-align: center;
}
.brand__name{
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 28px;
}
.brand__sub{
  margin-top: 4px;
  opacity:.75;
  font-size: 13px;
}
.brand__logo {
  height: 60px;
  width: auto;
  display: block;
}
.brand__logoWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .brand__logo {
    height: 50px;
  }
}

.tabs{
  display:flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab{
  border: 1px solid rgba(0,0,0,.18);
  color: #111;
  background: rgba(255,255,255,.55);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.tab.is-active{
  background: #111;
  color: #fff;
  border-color: #111;
}

.content{
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 14px 40px;
}

.panel{ display:none; }
.panel.is-visible{ display:block; }

/* ---------- Draft beers ---------- */
.draftWrap{
  background: var(--sectionBg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.draftHeader{
  display:grid;
  grid-template-columns: 1fr 190px 210px;
  gap: 0;
  border-bottom: 2px solid var(--line);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.draftHeader div{
  padding: 14px 12px;
  border-right: 2px solid var(--line);
}
.draftHeader div:first-child{
  text-align: center;
}
.draftHeader div:last-child{ border-right: none; }
.draftHeader .small{ font-weight: 700; opacity:.9; }

.draftTable{
  width:100%;
  border-collapse: collapse;
}
.draftTable th{
  padding: 14px 8px;
  text-align: center;
  font-weight: 800;
  border-bottom: 2px solid var(--line);
}
.draftTable td{
  padding: 12px 12px;
  border-bottom: 2px solid var(--line);
  vertical-align: middle;
  font-weight: 400;
}
.draftTable tr:last-child td{ border-bottom: none; }

.draftTable th.colToGo,
.draftTable th.colHere{
  border-left: 2px solid var(--line);
}

.colName{ width:auto; }
.colToGo{
  width:190px;
  text-align:center;
  font-weight: 800;
  border-left: 2px solid var(--line);
}

.colHere{
  width:211px;
  text-align:center;
  font-weight: 800;
  border-left: 2px solid var(--line);
}

.nameCell{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 400;
}
.badgeNum{
  width: 34px; height: 34px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.25);
  border: 2px solid rgba(0,0,0,.35);
  font-weight: 900;
}
.abv{ opacity:.75; font-weight: 400; }
.newBurst{
  margin-left: 8px;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  background: #000;
  color: #fff;
}

.draftFootnote{
  padding: 10px 12px 14px;
  border-top: 2px solid var(--line);
  font-weight: 400;
  opacity: .9;
}

/* ---------- Cocktails (beige cards, 2 columns) ---------- */
.cocktailGrid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 720px){
  .cocktailGrid{ grid-template-columns: 1fr; }
}

.cocktailWrap{
  background: var(--sectionBg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.cocktailCard{
  background: var(--cardBg);
  border: 1px solid rgba(92,55,12,.18);
  border-radius: 14px;
  overflow:hidden;
}

.cocktailTitle{
  background: rgba(0,0,0,.78);
  color: #fff;
  font-weight: 900;
  padding: 10px 12px;
  letter-spacing: .02em;
}
.cocktailBody{
  padding: 10px 12px 12px;
  line-height: 1.35;
}
.cocktailPrice{
  margin-top: 10px;
  font-weight: 900;
  text-align: right;
}

/* ---------- Canned beers (simple grid w/ photo) ---------- */
.cannedWrap{
  background: var(--sectionBg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  color: var(--ink);
}

.cannedCard{
  background: var(--cardBg);
  border: 1px solid rgba(92,55,12,.18);
  border-radius: 14px;
  overflow:hidden;
  position: relative;
}

.cannedGrid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 860px){
  .cannedGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .cannedGrid{ grid-template-columns: 1fr; }
}
.cannedCard img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
}
.cannedBody{ padding: 10px 12px 12px; }
.cannedName{ font-weight: 900; margin-bottom: 6px; }
.cannedDesc{ opacity: .85; line-height: 1.35; margin-bottom: 16px;}
.cannedPrice{ 
    font-weight: 900; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    padding-bottom: 6px;
    padding-right: 10px;
}
