@charset "utf-8";

:root {

  --charcoal:     #17120e;
  --charcoal-2:   #241c15;
  --charcoal-3:   #362a1e;
  --charcoal-4:   #4a3a29;

  --med:      #b45a24;
  --med-t:    #9d4c1c;
  --honey-light:   #d97b3c;
  --brass:    #d8a13d;
  --brass-light: #efc673;

  --foam:     #fbf6ec;
  --malt:     #f2e7d3;
  --malt-2:   #e8dabd;
  --line:    #ddcbab;
  --hops:    #5e6f33;

  --ink:      #2b211a;
  --muted:     #6b5a4a;

  --shadowEl-s:   0 1px 2px rgba(23,18,14,.08), 0 6px 18px -8px rgba(23,18,14,.28);
  --shadowEl-m:   0 2px 4px rgba(23,18,14,.10), 0 18px 40px -18px rgba(23,18,14,.45);
  --r:        4px;
  --r-l:      8px;
  --maxw:     1180px;

  --f-disp: "Arial Black", "Arial Bold", "Segoe UI Black", system-ui, Arial, sans-serif;
  --f-head: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-body: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --f-cond: "Arial Narrow", "Liberation Sans Narrow", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--foam);
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
p a, .text a { color: var(--med-t); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
p a:hover, .text a:hover { color: var(--charcoal); }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 800; line-height: 1.14; letter-spacing: -.015em; }

:focus-visible { outline: 3px solid var(--med); outline-offset: 3px; border-radius: 2px; }
.na-darkTone :focus-visible, .on-tap :focus-visible, .footerEl :focus-visible { outline-color: var(--brass-light); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.min0 { min-width: 0; }

.skip {
  position: absolute; left: 12px; top: -100px; z-index: 400;
  background: var(--charcoal); color: var(--foam);
  padding: 12px 18px; border-radius: var(--r);
  font-family: var(--f-head); font-weight: 700; font-size: .95rem;
  transition: top .18s ease;
}
.skip:focus { top: 12px; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-cond);
  font-size: .84rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--med-t); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--med); flex: 0 0 26px; }
.eyebrow.center { justify-content: center; }
.na-darkTone .eyebrow, .on-tap .eyebrow { color: var(--brass-light); }
.na-darkTone .eyebrow::before, .on-tap .eyebrow::before { background: var(--brass); }

.section { padding: 58px 0; }
.section-head { max-width: 700px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section h2 { font-size: clamp(1.72rem, 5.6vw, 2.5rem); color: var(--charcoal); }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 1.04rem; }
.na-darkTone h2, .on-tap h2 { color: var(--foam); }
.na-darkTone .section-head p, .on-tap .section-head p { color: rgba(251,246,236,.78); }

.na-darkTone { background: var(--charcoal); color: rgba(251,246,236,.86); }
.na-malts { background: var(--malt); }

.foam-edge { position: relative; }
.foam-edge::before {
  content: ""; position: absolute; left: 0; right: 0; top: -11px; height: 12px;
  background:
    radial-gradient(circle at 8px 12px, var(--foam) 7px, transparent 7.5px) 0 0/26px 12px repeat-x,
    radial-gradient(circle at 8px 12px, var(--foam) 5px, transparent 5.5px) 13px 0/26px 12px repeat-x;
  pointer-events: none;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  padding: 13px 22px; min-height: 46px;
  border: 2px solid transparent; border-radius: var(--r);
  cursor: pointer; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .14s ease, box-shadow .18s ease;
}
.btn svg { flex: 0 0 auto; }
.btn-mainCol { background: var(--med); color: #fff; box-shadow: var(--shadowEl-s); }
.btn-mainCol:hover { background: var(--med-t); transform: translateY(-2px); box-shadow: var(--shadowEl-m); }
.btn-brass { background: var(--brass); color: var(--charcoal); }
.btn-brass:hover { background: var(--brass-light); transform: translateY(-2px); }
.btn-darkMode { background: var(--charcoal); color: var(--foam); }
.btn-darkMode:hover { background: var(--charcoal-3); transform: translateY(-2px); box-shadow: var(--shadowEl-m); }
.btn-outlineEl { background: transparent; color: var(--charcoal); border-color: var(--charcoal-4); }
.btn-outlineEl:hover { background: var(--charcoal); color: var(--foam); border-color: var(--charcoal); }
.btn-lightVar { background: transparent; color: var(--foam); border-color: rgba(251,246,236,.5); }
.btn-lightVar:hover { background: rgba(251,246,236,.14); border-color: var(--foam); }
.btn-panelBlock { width: 100%; }
.btn-small { padding: 9px 15px; min-height: 40px; font-size: .9rem; }

.headBar {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--med);
}
.headBar-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }

.brandMark { display: flex; align-items: center; gap: 11px; color: var(--foam); min-width: 0; }
.brandMark-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brandMark-txt { min-width: 0; }
.brandMark-labelVal {
  display: block; font-family: var(--f-disp); font-size: 1.28rem; line-height: 1;
  letter-spacing: .01em; text-transform: uppercase; color: var(--foam);
}
.brandMark-sub {
  display: block; font-family: var(--f-cond); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass); margin-top: 3px; font-weight: 700;
}

.menu { display: none; align-items: center; gap: 4px; }
.menu a {
  font-family: var(--f-head); font-size: .95rem; font-weight: 600;
  color: rgba(251,246,236,.84); padding: 9px 13px; border-radius: var(--r);
  transition: color .18s ease, background-color .18s ease;
}
.menu a:hover { color: var(--brass-light); background: rgba(251,246,236,.07); }
.menu a[aria-current="page"] { color: var(--charcoal); background: var(--brass); }
.menu .btn { margin-left: 8px; }

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; flex: 0 0 46px;
  background: rgba(251,246,236,.09); border: 0; border-radius: var(--r);
  cursor: pointer; padding: 0 12px;
}
.hamburger span { display: block; height: 2px; background: var(--foam); border-radius: 2px; }

.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(86vw, 330px); background: var(--charcoal-2);
  border-left: 3px solid var(--med);
  transform: translateX(102%); transition: transform .28s ease, visibility .28s ease;
  padding: 74px 22px 26px; display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto; visibility: hidden;
}

.drawer.isOpen { transform: translateX(0); visibility: visible; }
.drawer a { color: var(--foam); font-family: var(--f-head); font-weight: 600; font-size: 1.06rem; padding: 13px 4px; border-bottom: 1px solid rgba(251,246,236,.1); }
.drawer a[aria-current="page"] { color: var(--brass-light); }
.drawer .btn { margin-top: 18px; }
.drawer-info { margin-top: 22px; font-size: .88rem; color: rgba(251,246,236,.7); font-family: var(--f-head); }
.drawer-info a { border: 0; padding: 4px 0; font-size: .95rem; color: var(--brass-light); }
.curtain { position: fixed; inset: 0; z-index: 150; background: rgba(10,7,5,.6); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; }
.curtain.isOpen { opacity: 1; visibility: visible; }
.shut {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px; min-width: 46px; min-height: 46px;
  background: rgba(251,246,236,.12); border: 0; border-radius: var(--r);
  color: var(--foam); font-size: 1.7rem; line-height: 1; cursor: pointer;
}

.hero { position: relative; background: var(--charcoal); color: var(--foam); overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: 0; background: linear-gradient(150deg, #3a2a1a, #17120e 65%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(178deg, rgba(15,11,8,.86) 0%, rgba(15,11,8,.6) 38%, rgba(15,11,8,.93) 100%);
}
.hero-in { position: relative; z-index: 2; padding: 62px 0 54px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  border: 1px solid rgba(216,161,61,.55); background: rgba(216,161,61,.12);
  color: var(--brass-light); font-family: var(--f-cond); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--f-disp); text-transform: uppercase; letter-spacing: -.005em;
  font-size: clamp(2.1rem, 8.6vw, 4rem); line-height: 1.02; max-width: 15ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero h1 em { font-style: normal; color: var(--brass); }
.hero-lead { margin-top: 18px; max-width: 50ch; font-size: clamp(1.02rem, 3.2vw, 1.18rem); color: rgba(251,246,236,.92); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-figures { display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(251,246,236,.16); }
.hero-figure strong { display: block; font-family: var(--f-disp); font-size: 1.9rem; line-height: 1; color: var(--brass); }
.hero-figure span { display: block; font-family: var(--f-head); font-size: .84rem; color: rgba(251,246,236,.74); margin-top: 5px; }

.pas { position: relative; background: var(--charcoal); color: var(--foam); overflow: hidden; }
.pas-photo { position: absolute; inset: 0; z-index: 0; background: linear-gradient(140deg, #4a3520, #17120e 70%); }
.pas-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.pas-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,11,8,.82), rgba(15,11,8,.9)); }
.pas-in { position: relative; z-index: 2; padding: 46px 0 44px; }
.pas h1 { font-family: var(--f-disp); text-transform: uppercase; font-size: clamp(1.9rem, 7.4vw, 3.1rem); line-height: 1.04; }
.pas p { margin-top: 14px; max-width: 56ch; color: rgba(251,246,236,.86); }
.breadcrumbs { font-family: var(--f-cond); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(251,246,236,.7); }
.breadcrumbs a:hover { color: var(--brass-light); }

.benefits { background: var(--malt); border-block: 1px solid var(--line); padding: 26px 0; }
.benefits-gridEl { display: grid; grid-template-columns: 1fr; gap: 18px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.benefit svg { flex: 0 0 26px; color: var(--med-t); margin-top: 3px; }
.benefit h3 { font-size: .98rem; margin-bottom: 1px; }
.benefit p { font-family: var(--f-head); font-size: .87rem; line-height: 1.45; color: var(--muted); }

.on-tap { background: var(--charcoal); color: rgba(251,246,236,.86); }

.tab-controls {
  background: var(--charcoal-2); border: 1px solid rgba(251,246,236,.13);
  border-radius: var(--r-l); padding: 18px; margin-bottom: 18px;
}
.tab-panelBlock + .tab-panelBlock { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(251,246,236,.1); }
.tab-detailVal {
  display: block; font-family: var(--f-cond); font-size: .82rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px;
}
.chipList { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  font-family: var(--f-head); font-size: .9rem; font-weight: 600;
  background: #fff; color: var(--charcoal);
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 15px; min-height: 40px; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.chip:hover { border-color: var(--med); color: var(--med-t); }
.chip[aria-pressed="true"] { background: var(--charcoal); border-color: var(--charcoal); color: var(--brass); }

.on-tap .chip, .na-darkTone .chip { background: transparent; color: rgba(251,246,236,.88); border-color: rgba(251,246,236,.28); }
.on-tap .chip:hover, .na-darkTone .chip:hover { border-color: var(--brass); color: var(--brass-light); }
.on-tap .chip[aria-pressed="true"], .na-darkTone .chip[aria-pressed="true"] { background: var(--brass); border-color: var(--brass); color: var(--charcoal); }

.sliderEl { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sliderEl input[type="range"] { flex: 1 1 200px; min-width: 0; accent-color: var(--honey-light); height: 30px; cursor: pointer; }
.sliderEl output {
  font-family: var(--f-cond); font-weight: 700; font-size: 1rem; letter-spacing: .04em;
  color: var(--brass-light); background: rgba(216,161,61,.14);
  border: 1px solid rgba(216,161,61,.4); border-radius: var(--r);
  padding: 5px 11px; white-space: nowrap;
}
.tab-line { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }
.switcher { display: flex; align-items: center; gap: 9px; font-family: var(--f-head); font-size: .93rem; cursor: pointer; min-height: 40px; }
.switcher input { width: 20px; height: 20px; accent-color: var(--honey-light); cursor: pointer; flex: 0 0 20px; }
.tab-select { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-family: var(--f-head); font-size: .93rem; }
.tab-select select {
  font-family: var(--f-head); font-size: .93rem; color: var(--foam);
  background: var(--charcoal-3); border: 1.5px solid rgba(251,246,236,.24);
  border-radius: var(--r); padding: 9px 11px; min-height: 40px; max-width: 100%;
}

.tab-summaryBox {
  display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center;
  font-family: var(--f-head); font-size: .92rem; color: rgba(251,246,236,.82);
  background: rgba(180,90,36,.14); border-left: 4px solid var(--honey-light);
  border-radius: 0 var(--r) var(--r) 0; padding: 12px 15px; margin-bottom: 20px;
}
.tab-summaryBox b { color: var(--brass-light); font-family: var(--f-cond); font-size: 1.02rem; letter-spacing: .03em; }

.tab-list { list-style: none; display: grid; gap: 12px; }
.beer {
  position: relative; min-width: 0;
  background: var(--charcoal-2); border: 1px solid rgba(251,246,236,.12);
  border-left: 5px solid var(--med); border-radius: var(--r-l);
  padding: 18px 18px 18px 16px;
  display: grid; gap: 14px;
  transition: border-color .18s ease, transform .18s ease;
}
.beer:hover { border-color: rgba(216,161,61,.5); border-left-color: var(--brass); transform: translateY(-2px); }
.beer[data-conditionVal="seasonal"] { border-left-color: var(--hops); }
.beer[data-conditionVal="bottle"] { border-left-color: var(--charcoal-4); }
.beer-headRow { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: baseline; min-width: 0; }
.beer h3 { font-family: var(--f-disp); text-transform: uppercase; font-size: 1.24rem; color: var(--foam); letter-spacing: 0; }
.beer-style { font-family: var(--f-head); font-size: .88rem; color: var(--brass-light); font-weight: 600; }
.conditionVal {
  font-family: var(--f-cond); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; white-space: nowrap;
}
.conditionVal-cep { background: var(--med); color: #fff; }
.conditionVal-seasonal { background: rgba(94,111,51,.28); color: #c4d68a; border: 1px solid rgba(150,177,80,.5); }
.conditionVal-bottle { background: rgba(251,246,236,.12); color: rgba(251,246,236,.82); border: 1px solid rgba(251,246,236,.24); }

.beer-dataItems { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dataItem { min-width: 0; }
.dataItem dt { font-family: var(--f-cond); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,246,236,.6); }
.dataItem dd { font-family: var(--f-disp); font-size: 1.22rem; color: var(--foam); line-height: 1.2; }
.dataItem dd small { font-family: var(--f-head); font-size: .78rem; font-weight: 600; color: rgba(251,246,236,.62); }

.bitterness { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.scale { display: flex; gap: 3px; }
.scale i { display: block; width: 15px; height: 11px; border-radius: 2px; background: rgba(251,246,236,.16); }
.scale i.plna { background: var(--brass); }
.scale i.plna.pal { background: var(--honey-light); }
.bitterness-txt { font-family: var(--f-head); font-size: .8rem; line-height: 1.35; color: rgba(251,246,236,.76); }

.beer-text { font-size: .96rem; color: rgba(251,246,236,.8); }
.beer-footEl {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed rgba(251,246,236,.18);
}
.priceList { display: flex; gap: 18px; flex-wrap: wrap; }
.priceVal { min-width: 0; }
.priceVal span { display: block; font-family: var(--f-cond); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,246,236,.6); }
.priceVal strong { display: block; font-family: var(--f-disp); font-size: 1.36rem; color: var(--brass); line-height: 1.1; }
.priceVal.smaller strong { font-size: 1.1rem; color: rgba(251,246,236,.9); }

.tab-emptyState {
  border: 1px dashed rgba(251,246,236,.3); border-radius: var(--r-l);
  padding: 26px 20px; text-align: center; color: rgba(251,246,236,.8);
  font-family: var(--f-head);
}
.tab-emptyState button { margin-top: 12px; }

.legendEl {
  margin-top: 22px; background: rgba(251,246,236,.05);
  border: 1px solid rgba(251,246,236,.12); border-radius: var(--r-l); padding: 18px;
}
.legendEl h3 { font-size: 1.02rem; color: var(--foam); margin-bottom: 10px; }
.legendEl dl { display: grid; gap: 12px; }
.legendEl dt { font-family: var(--f-cond); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; color: var(--brass-light); }
.legendEl dd { font-size: .93rem; color: rgba(251,246,236,.8); }

.whats-on-list { list-style: none; display: grid; gap: 14px; }
.whats-on {
  display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 16px; box-shadow: var(--shadowEl-s); min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.whats-on:hover { transform: translateY(-2px); box-shadow: var(--shadowEl-m); border-color: var(--med); }
.dateVal {
  background: var(--charcoal); color: var(--foam); border-radius: var(--r);
  text-align: center; padding: 10px 4px; align-self: start;
  border-bottom: 3px solid var(--med);
}
.dateVal strong { display: block; font-family: var(--f-disp); font-size: 1.7rem; line-height: 1; }
.dateVal span { display: block; font-family: var(--f-cond); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-top: 3px; }
.dateVal em { display: block; font-style: normal; font-family: var(--f-head); font-size: .7rem; color: rgba(251,246,236,.6); margin-top: 2px; }
.whats-on-bodyEl { min-width: 0; }
.whats-on-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.tag {
  font-family: var(--f-cond); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px; background: var(--malt-2); color: var(--charcoal-3);
}
.tag.brew { background: rgba(180,90,36,.16); color: var(--med-t); }
.tag.music { background: rgba(94,111,51,.18); color: #47571f; }
.tag.food { background: rgba(216,161,61,.24); color: #6d4d09; }
.tag.countdown { background: var(--charcoal); color: var(--brass-light); }
.whats-on h3 { font-size: 1.14rem; margin-bottom: 5px; }
.whats-on p { font-size: .95rem; color: var(--muted); }
.whats-on-meta { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 9px; font-family: var(--f-head); font-size: .87rem; color: var(--charcoal-3); }
.whats-on-meta b { color: var(--med-t); }

.stepGrid { list-style: none; counter-reset: k; display: grid; gap: 16px; }
.stepBox {
  counter-increment: k; position: relative; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 22px 20px 20px; box-shadow: var(--shadowEl-s);
}
.stepBox::before {
  content: counter(k);
  position: absolute; top: -14px; left: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--charcoal); color: var(--brass);
  font-family: var(--f-disp); font-size: 1.12rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--foam);
}
.stepBox h3 { margin: 10px 0 6px; font-size: 1.08rem; }
.stepBox p { font-size: .95rem; color: var(--muted); }

.gridEl-2 { display: grid; grid-template-columns: 1fr; gap: 22px; }
.gridEl-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
.cardEl {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 24px 22px; box-shadow: var(--shadowEl-s); min-width: 0;
}
.cardEl h3 { font-size: 1.16rem; margin-bottom: 8px; }
.cardEl p { font-size: .97rem; color: var(--muted); }
.cardEl ul { margin-top: 12px; list-style: none; display: grid; gap: 8px; }
.cardEl ul li { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; }
.cardEl ul li::before { content: "▮"; color: var(--med); font-size: .68rem; line-height: 1.9; flex: 0 0 auto; }

.photo {
  position: relative; overflow: hidden; border-radius: var(--r-l);
  background: linear-gradient(145deg, var(--malt) 0%, var(--malt-2) 55%, #d6c19c 100%);
  border: 1px solid var(--line);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.ratioOf-43 { aspect-ratio: 4 / 3; }
.photo.ratioOf-169 { aspect-ratio: 16 / 9; }
.photo.ratioOf-45 { aspect-ratio: 4 / 5; }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 14px 12px;
  background: linear-gradient(transparent, rgba(15,11,8,.88));
  color: #fff; font-family: var(--f-head); font-size: .88rem; font-weight: 600;
}

.about-gridEl { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.about-text h2 { margin-bottom: 14px; }
.about-text p + p { margin-top: 14px; }
.about-text p { color: var(--muted); }
.signature { margin-top: 22px; padding-left: 16px; border-left: 3px solid var(--med); }
.signature strong { display: block; font-family: var(--f-head); font-size: 1rem; color: var(--charcoal); }
.signature span { font-family: var(--f-head); font-size: .87rem; color: var(--muted); }
.figures-line { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 26px; }
.figure strong { display: block; font-family: var(--f-disp); font-size: 1.8rem; color: var(--med-t); line-height: 1; }
.figure span { font-family: var(--f-head); font-size: .84rem; color: var(--muted); }

.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gallery .photo { border-radius: var(--r); }
.gallery img { transition: transform .4s ease; }
.gallery .photo:hover img { transform: scale(1.05); }

.reviewsId-gridEl { display: grid; grid-template-columns: 1fr; gap: 18px; }
.reviewsId {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--brass);
  border-radius: var(--r-l); padding: 24px 22px; box-shadow: var(--shadowEl-s); min-width: 0;
}
.starRow { color: var(--med); letter-spacing: 3px; font-size: 1rem; }
.reviewsId blockquote { margin-top: 12px; font-size: 1rem; line-height: 1.65; }
.reviewsId figcaption { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.initialMark {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  background: var(--charcoal); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-size: 1.02rem;
}
.reviewsId figcaption strong { display: block; font-family: var(--f-head); font-size: .96rem; }
.reviewsId figcaption span { font-family: var(--f-head); font-size: .85rem; color: var(--muted); }

.tableEl-box { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-l); background: #fff; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-family: var(--f-head); font-size: .93rem; }
caption { caption-side: top; text-align: left; padding: 14px 16px 0; font-family: var(--f-head); font-size: .9rem; color: var(--muted); }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
thead th { background: var(--charcoal); color: var(--foam); font-family: var(--f-cond); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: 0; white-space: nowrap; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #fdfaf3; }
td.figure-bunka, th.figure-bunka { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
tbody th { font-weight: 700; color: var(--charcoal); }
.tab-hint { font-family: var(--f-head); font-size: .84rem; color: var(--muted); margin-top: 8px; }

.balicky { display: grid; grid-template-columns: 1fr; gap: 18px; }
.balicek {
  position: relative; display: flex; flex-direction: column; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 26px 22px; box-shadow: var(--shadowEl-s);
}
.balicek.doporuceny { border: 2px solid var(--med); box-shadow: var(--shadowEl-m); }
.stuha {
  position: absolute; top: -12px; left: 20px;
  background: var(--med); color: #fff;
  font-family: var(--f-cond); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 3px;
}
.balicek h3 { font-size: 1.28rem; }
.balicek .lengthVal { font-family: var(--f-head); font-size: .88rem; color: var(--muted); margin-top: 2px; }
.balicek .priceVal-large { font-family: var(--f-disp); font-size: 2.2rem; color: var(--charcoal); margin: 14px 0 2px; line-height: 1; }
.balicek .priceVal-large small { font-family: var(--f-head); font-size: .82rem; font-weight: 600; color: var(--muted); }
.balicek ul { list-style: none; display: grid; gap: 9px; margin: 18px 0 22px; }
.balicek li { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; }
.balicek li svg { flex: 0 0 17px; color: var(--med); margin-top: 5px; }
.balicek .btn { margin-top: auto; }

.beer-detail { display: flex; flex-direction: column; gap: 12px; }
.beer-detail .headRow { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline; }
.beer-detail h3 { font-family: var(--f-disp); text-transform: uppercase; font-size: 1.28rem; letter-spacing: 0; }
.beer-detail .style { font-family: var(--f-head); font-size: .9rem; font-weight: 700; color: var(--med-t); }
.params { display: flex; flex-wrap: wrap; gap: 7px; }
.params span {
  font-family: var(--f-cond); font-size: .84rem; font-weight: 700; letter-spacing: .05em;
  background: var(--malt); border: 1px solid var(--line); border-radius: 3px;
  padding: 4px 9px; color: var(--charcoal-3); white-space: nowrap;
}
.beer-detail .cenovka { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); display: flex; flex-wrap: wrap; gap: 8px 22px; }
.beer-detail .cenovka p { min-width: 0; }
.beer-detail .cenovka span { display: block; font-family: var(--f-cond); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.beer-detail .cenovka b { font-family: var(--f-disp); font-size: 1.18rem; color: var(--med-t); }
.tag.cep { background: var(--med); color: #fff; }
.tag.seasonal { background: rgba(94,111,51,.2); color: #3d4b19; }
.tag.bottle { background: var(--malt-2); color: var(--charcoal-3); }

.osa { list-style: none; display: grid; }
.osa li { position: relative; display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 14px; padding-bottom: 24px; }
.osa li::before { content: ""; position: absolute; left: 11px; top: 24px; bottom: 0; width: 2px; background: var(--line); }
.osa li:last-child { padding-bottom: 0; }
.osa li:last-child::before { display: none; }
.osa .cas { position: relative; padding-left: 28px; font-family: var(--f-cond); font-weight: 700; font-size: .95rem; letter-spacing: .06em; color: var(--med-t); }
.osa .cas::before { content: ""; position: absolute; left: 5px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--med); box-shadow: 0 0 0 3px var(--foam); }
.osa h3 { font-size: 1.04rem; margin-bottom: 4px; }
.osa p { font-size: .95rem; color: var(--muted); }

.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadowEl-s); }
.faq summary {
  cursor: pointer; padding: 14px 18px; min-height: 48px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  display: flex; gap: 14px; align-items: center; justify-content: space-between;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-disp); font-size: 1.3rem; line-height: 1; color: var(--med); flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 18px 16px; font-size: .96rem; color: var(--muted); }
.faq .answer p + p { margin-top: 10px; }

.calc {
  background: var(--charcoal); color: rgba(251,246,236,.88);
  border-radius: var(--r-l); padding: 22px 20px; box-shadow: var(--shadowEl-m);
}
.calc h3 { color: var(--foam); font-size: 1.24rem; }
.calc > p { font-family: var(--f-head); font-size: .92rem; color: rgba(251,246,236,.74); margin-top: 6px; }
.calc-fieldEl { display: grid; gap: 14px; margin-top: 20px; }
.calc-fieldEl label { display: block; font-family: var(--f-cond); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.calc-fieldEl select, .calc-fieldEl input[type="number"] {
  width: 100%; font-family: var(--f-head); font-size: 1rem; color: var(--foam);
  background: var(--charcoal-3); border: 1.5px solid rgba(251,246,236,.24);
  border-radius: var(--r); padding: 11px 12px; min-height: 46px;
}
.calc-switches { display: grid; gap: 10px; margin-top: 4px; }
.calc-switches .switcher { align-items: flex-start; }
.calc-switches .switcher input { margin-top: 3px; }
.calc-switches .switcher span { font-size: .93rem; }
.switcher input:disabled { cursor: not-allowed; }
.switcher input:disabled + span { opacity: .5; }
.calc-listing { list-style: none; margin-top: 20px; padding-top: 16px; border-top: 1px dashed rgba(251,246,236,.24); display: grid; gap: 9px; }
.calc-listing li { display: flex; justify-content: space-between; gap: 14px; font-family: var(--f-head); font-size: .94rem; }
.calc-listing li span:last-child { font-family: var(--f-cond); font-weight: 700; white-space: nowrap; color: var(--foam); }
.calc-totalCount {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--med);
}
.calc-totalCount span { font-family: var(--f-head); font-weight: 700; font-size: 1.02rem; color: var(--foam); }
.calc-totalCount strong { font-family: var(--f-disp); font-size: 2rem; color: var(--brass); line-height: 1; }
.calc-note { font-family: var(--f-head); font-size: .86rem; color: rgba(251,246,236,.72); margin-top: 12px; }
.calc-note b { color: var(--brass-light); }
.calc-warning { margin-top: 12px; font-family: var(--f-head); font-size: .88rem; color: #ffc9a3; background: rgba(180,90,36,.24); border: 1px solid rgba(217,123,60,.5); border-radius: var(--r); padding: 10px 12px; }

.formEl {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 26px 22px; box-shadow: var(--shadowEl-m); min-width: 0;
}
.formEl h3 { font-size: 1.3rem; }
.formEl > p { font-family: var(--f-head); font-size: .93rem; color: var(--muted); margin-top: 5px; margin-bottom: 20px; }
.fieldEl { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; min-width: 0; }
.fieldEl label { font-family: var(--f-head); font-size: .89rem; font-weight: 700; }
.fieldEl .isRequired { color: #a32d1c; }
.fieldEl input, .fieldEl select, .fieldEl textarea {
  font-family: var(--f-head); font-size: 1rem; color: var(--ink);
  background: #fdfaf3; border: 1.5px solid var(--line); border-radius: var(--r);
  padding: 11px 12px; min-height: 46px; width: 100%; max-width: 100%; min-width: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.fieldEl textarea { min-height: 96px; resize: vertical; }
.fieldEl input:focus, .fieldEl select:focus, .fieldEl textarea:focus { border-color: var(--med); box-shadow: 0 0 0 3px rgba(180,90,36,.18); outline: none; }
.fieldEl input:user-invalid, .fieldEl textarea:user-invalid { border-color: #a32d1c; }
.fieldEl .hintText { font-family: var(--f-head); font-size: .82rem; color: var(--muted); }
.fieldEl-line { display: grid; grid-template-columns: 1fr; gap: 0 15px; }
.consentVal { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 16px; }
.consentVal input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; accent-color: var(--med); }
.consentVal label { font-family: var(--f-head); font-size: .86rem; color: var(--muted); font-weight: 400; }
.noticeBox {
  display: none; margin-top: 16px; padding: 14px 16px;
  background: var(--malt); border-left: 4px solid var(--med);
  border-radius: 0 var(--r) var(--r) 0; font-family: var(--f-head); font-size: .95rem;
}
.noticeBox.seen { display: block; }
.noticeBox strong { color: var(--med-t); }

.contact-gridEl { display: grid; grid-template-columns: 1fr; gap: 26px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-top: 22px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.contact-list svg { flex: 0 0 22px; color: var(--med-t); margin-top: 4px; }
.contact-list strong { display: block; font-family: var(--f-head); font-size: .95rem; }
.contact-list span, .contact-list a { font-family: var(--f-head); font-size: .93rem; color: var(--muted); }
.contact-list a { color: var(--med-t); font-weight: 700; }
.openHours { list-style: none; margin-top: 8px; display: grid; gap: 5px; font-family: var(--f-head); font-size: .93rem; }
.openHours li { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dotted var(--line); padding: 4px 0; }
.openHours b { font-variant-numeric: tabular-nums; white-space: nowrap; }
.openHours .closed { color: var(--muted); }

.footerEl { background: var(--charcoal); color: rgba(251,246,236,.76); padding: 44px 0 104px; }
.notice {
  display: flex; gap: 11px; align-items: flex-start;
  background: rgba(251,246,236,.06); border: 1px solid rgba(251,246,236,.16);
  border-radius: var(--r-l); padding: 15px 17px; margin-bottom: 30px;
  font-family: var(--f-head); font-size: .88rem; color: rgba(251,246,236,.86);
}
.notice svg { flex: 0 0 20px; color: var(--brass); margin-top: 3px; }
.footerEl-gridEl { display: grid; grid-template-columns: 1fr; gap: 26px; margin-bottom: 28px; }
.footerEl-gridEl h3 { font-family: var(--f-cond); font-size: .86rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 12px; }
.footerEl p, .footerEl a { font-family: var(--f-head); font-size: .92rem; }
.footerEl-linkList { list-style: none; display: grid; gap: 6px; }
.footerEl-linkList a { color: rgba(251,246,236,.8); }
.footerEl-linkList a:hover { color: var(--brass-light); }
.footerEl-brandMark p { margin-top: 12px; max-width: 44ch; color: rgba(251,246,236,.72); }
.vek { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-family: var(--f-head); font-size: .84rem; color: rgba(251,246,236,.72); }
.vek b {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  border: 2px solid var(--brass); color: var(--brass-light);
  display: inline-flex; align-items: center; justify-content: center; font-size: .78rem;
}
.footerEl-bottomRow { border-top: 1px solid rgba(251,246,236,.14); padding-top: 20px; font-family: var(--f-head); font-size: .84rem; color: rgba(251,246,236,.6); }

.callbar {
  position: fixed; left: 0; right: 0; bottom: var(--frontage-band, 0px); z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--charcoal-2); border-top: 2px solid var(--med);
  box-shadow: 0 -6px 20px rgba(0,0,0,.28);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px; min-height: 50px;
  font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: var(--foam);
}
.callbar a.call { background: var(--med); color: #fff; }
.callbar a svg { width: 18px; height: 18px; flex: 0 0 18px; }

@media (min-width: 560px) {
  .benefits-gridEl { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
  .beer-dataItems { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fieldEl-line { grid-template-columns: 1fr 1fr; }
  .whats-on { grid-template-columns: 84px minmax(0, 1fr); }
}

@media (min-width: 820px) {
  .section { padding: 78px 0; }
  .wrap { padding: 0 26px; }
  .menu { display: flex; }
  .hamburger { display: none; }
  .callbar { display: none; }
  .footerEl { padding-bottom: 44px; }
  .hero-in { padding: 96px 0 84px; }
  .pas-in { padding: 66px 0 62px; }
  .benefits-gridEl { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gridEl-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  .gridEl-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stepGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviewsId-gridEl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .balicky { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .whats-on-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .about-gridEl { grid-template-columns: .95fr 1.05fr; gap: 44px; }
  .contact-gridEl { grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
  .tab-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc { padding: 28px 26px; }
  .formEl { padding: 30px 28px; }
}

@media (min-width: 1080px) {
  .stepGrid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .section h2 { letter-spacing: -.02em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

@media print {
  .headBar, .callbar, .drawer, .curtain, .tab-controls, .hero-cta { display: none !important; }
  body { background: #fff; }
}
