:root {
  --ink: #111111;
  --paper: #fffaf2;
  --cream: #f5ecdf;
  --muted: #665f57;
  --line: #ddd0c2;
  --accent: #a14f65;
  --accent-dark: #743448;
  --sage: #79806f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 27, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.header-cta {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-dark);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(40px, 8vw, 104px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.72)),
    repeating-linear-gradient(90deg, rgba(161, 79, 101, 0.14) 0 54px, rgba(121, 128, 111, 0.15) 54px 108px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(5.2rem, 14vw, 10.5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

h4 {
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #29231d;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--ink);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 0;
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
}

.hero-facts dt {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #312b25;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.logo-panel {
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fresh-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.fresh-bar span {
  padding: 13px 8px;
  color: var(--white);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.fresh-bar span:nth-child(2n) {
  background: var(--accent);
}

.section {
  padding: clamp(58px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 74px);
  background: var(--white);
}

.intro h2 {
  max-width: 660px;
}

.intro-grid {
  display: grid;
  gap: 16px;
}

.intro-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-section {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading p:last-child {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

.menu-filters {
  position: sticky;
  top: 77px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 18px;
  background: linear-gradient(var(--cream) 72%, rgba(245, 236, 223, 0));
}

.filter-button {
  appearance: none;
  min-height: 40px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-group {
  padding-top: 36px;
}

.group-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.group-heading span {
  color: var(--accent-dark);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(40, 31, 20, 0.07);
}

.offer-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000000;
}

.offer-photo::after {
  content: "miejsce na zdjęcie";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 18px;
}

.menu-card-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.menu-card-title strong {
  padding: 5px 8px;
  color: var(--white);
  background: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tag {
  display: inline-block;
  margin: 0 5px 4px 0;
  padding: 3px 7px;
  color: var(--ink);
  background: #e5eadf;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px) clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--accent-dark);
}

.order-band .eyebrow {
  color: #ffdfdf;
}

.order-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.order-band p {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 42px clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--ink);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 2.7rem;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  gap: 9px;
  font-style: normal;
  font-weight: 750;
  text-align: right;
}

address a {
  color: var(--white);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .intro,
  .section-heading,
  .order-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 520px;
  }

  .hero-facts,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading p:last-child {
    margin-bottom: 0;
  }

  .site-footer,
  address {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(4.4rem, 23vw, 6.1rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-facts,
  .menu-grid,
  .fresh-bar {
    grid-template-columns: 1fr;
  }

  .fresh-bar span {
    padding: 9px;
  }

  .menu-filters {
    top: 73px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .menu-card-title {
    grid-template-columns: 1fr;
  }

  .menu-card-title strong {
    justify-self: start;
  }
}
