:root {
  --brick: #ffffff;
  --brick-dk: #cfcfcf;
  --char: #ffffff;
  --crema: #000000;
  --paper: #161616;
  --crust: #333333;
  --line: rgba(255, 255, 255, 0.14);
  --basil: #4ade80;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.6);
  --header-h: 7.75rem; /* przybliżona wysokość nagłówka; JS uściśla na żywo */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  /* Fluid root: 1rem scales 15px → 18px with viewport, so all rem sizing is responsive */
  font-size: clamp(15px, 0.85rem + 0.3vw, 18px);
  scroll-behavior: smooth;
  /* Odsuń kotwice spod przyklejonego nagłówka + paska kategorii (JS uściśla) */
  scroll-padding-top: calc(var(--header-h) + 3.5rem);
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--char);
  background: var(--crema);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.closure-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  background: rgba(239, 68, 68, 0.14);
  border-bottom: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}
.wrap {
  max-width: 57.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--crust);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  max-width: 57.5rem;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand .logo-img {
  display: block;
  height: 5.875rem;
  width: auto;
  border-radius: 0.5rem;
}
.call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brick);
  color: var(--crema);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
}
.call:hover {
  background: var(--brick-dk);
}
.call:active {
  transform: scale(0.97);
}
.hero {
  padding: 2.75rem 0 1.75rem;
}
.hero h1 {
  font-size: clamp(2.125rem, 7vw, 3.75rem);
  font-weight: 800;
  line-height: 0.98;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--brick);
}
.hero .lede {
  margin-top: 1rem;
  font-size: 1.0625rem;
  max-width: 46ch;
  color: #b5b5b5;
}
.status {
  margin-top: 1.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5625rem 0.9375rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}
.dot {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  flex: none;
}
.dot.on {
  background: var(--basil);
  box-shadow: 0 0 0 0.25rem rgba(62, 107, 74, 0.18);
}
.dot.soon {
  background: #f59e0b;
  box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.18);
}
.dot.off {
  background: #ef4444;
  box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.18);
}
nav.cats {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--crema);
  padding: 0.625rem 0 0.375rem;
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease;
}
nav.cats.cats--hidden {
  transform: translateY(-100%);
}
.chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.25rem;
  max-width: 57.5rem;
  margin: 0 auto;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chips a {
  flex: none;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4375rem 0.8125rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--char);
  transition: 0.15s;
}
.chips a:hover {
  border-color: var(--brick);
  color: var(--brick);
}
section.menu {
  padding: 2.375rem 0 0.5rem;
}
.cat-head {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 0.375rem;
}
.cat-head h2 {
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  font-weight: 800;
  color: var(--brick);
}
.cat-head .rule {
  flex: 1;
  height: 1px;
  background: var(--crust);
}
.cat-note {
  font-size: 0.8125rem;
  color: #9a9a9a;
  font-style: italic;
  margin: 0.125rem 0 1.125rem;
  max-width: 60ch;
}
.items {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2.5rem;
}
.item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.8125rem 0;
  border-bottom: 1px dashed var(--line);
}
.item:last-child {
  border-bottom: none;
}
.item-main {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.num {
  flex: none;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  border: 2px solid var(--brick);
  color: var(--brick);
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  font-size: 0.9375rem;
  margin-top: 0.0625rem;
}
.item .body {
  flex: 1;
  min-width: 0;
}
.row1 {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.nm {
  font-weight: 700;
  font-size: 1rem;
  font-family: "Bricolage Grotesque";
}
.leader {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-0.25rem);
  min-width: 0.875rem;
}
.price {
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.desc {
  font-size: 0.84375rem;
  color: #9a9a9a;
  margin-top: 0.1875rem;
}
.item-photo {
  display: block;
  width: 40%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: #000;
}
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  padding: 2.25rem 0 0.625rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.375rem;
  box-shadow: var(--shadow);
}
.card h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  letter-spacing: 0;
}
.hrow {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.4375rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--line);
}
.hrow:last-child {
  border-bottom: none;
}
.hrow.today {
  font-weight: 700;
  color: var(--brick);
}
.hrow .closed {
  color: #777;
}
.contact-line {
  font-size: 1.21875rem;
  margin-bottom: 0.875rem;
}
.contact-line span {
  display: block;
  font-size: 0.975rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.1875rem;
}
.contact-line a {
  font-weight: 600;
  text-decoration: none;
  color: var(--brick);
}
footer {
  padding: 2.125rem 0 4.375rem;
  text-align: center;
  font-size: 0.78125rem;
  color: #777;
}
footer a {
  color: #777;
}
@media (max-width: 40em) {
  :root {
    --header-h: 5rem;
  }
  .panels {
    grid-template-columns: 1fr;
  }
  .brand .logo-img {
    height: 3.125rem;
  }
  .chips {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}
@media (min-width: 48em) {
  .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto;
  }
}
