@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --ink: #231b1d;
  --green: #7c0314;
  --green2: #5b020f;
  --cream: #f6f0e9;
  --paper: #fffdf9;
  --gold: #c79748;
  --muted: #74696b;
  --line: #e2d8d9;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(60, 3, 13, 0.12);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.narrow {
  max-width: 940px;
}
.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(124, 3, 20, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.brand img {
  width: 165px;
  height: auto;
}
.brand-fallback {
  display: flex !important;
  flex-direction: column;
  color: #fff;
}
.brand-fallback[hidden] {
  display: none !important;
}
.brand-fallback strong {
  font-family: Georgia, serif;
  font-size: 24px;
}
.brand-fallback small {
  letter-spacing: 0.23em;
  font-size: 9px;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  position: relative;
  padding: 32px 0;
  text-transform: uppercase;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}
.desktop-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--gold);
}
.header-call {
  font-weight: 300;
  color: #f0cd8a;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 790px;
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.hero-image,
.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(44, 0, 8, 0.9) 0%,
    rgba(55, 0, 10, 0.6) 48%,
    rgba(65, 0, 11, 0.14) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 250px;
  max-width: 780px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 500;
  color: #9a6e2d;
  margin-bottom: 18px;
}
.eyebrow.light {
  color: #edc77c;
}
.hero h1,
.page-hero h1,
.not-found h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.4vw, 75px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  font-weight: 500;
}
.hero p {
  font-size: 20px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}
.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  color: #1b211e;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-dark {
  background: var(--green);
  color: #fff;
}
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-note span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 22px;
}
.section {
  padding: 100px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section h2,
.photo-copy h2,
.contact-main h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.lead {
  padding-top: 28px;
}
.lead p,
.section-head p,
.photo-copy p {
  font-size: 18px;
  color: var(--muted);
}
.text-link {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 10px;
}
.feature-card {
  background: var(--cream);
  padding: 34px;
  border-radius: var(--radius);
}
.feature-card > span,
.service-no {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.16em;
}
.feature-card h3,
.service-card h3,
.step h3 {
  font-size: 22px;
  margin: 24px 0 10px;
}
.feature-card p,
.service-card p,
.step p {
  color: var(--muted);
  margin: 0;
}
.photo-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  padding-top: 72px;
}
.photo-tile {
  height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #ddd;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-tile:hover img {
  transform: scale(1.04);
}
.photo-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 55%);
}
.photo-tile span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font-weight: 500;
}
.menu-preview {
  background: var(--cream);
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.section-head h2 {
  margin-bottom: 18px;
}
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.menu-preview-grid a {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #ece7dc;
  transition: 0.2s;
}
.menu-preview-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.menu-preview-grid a > span {
  font-size: 28px;
  margin-bottom: 18px;
}
.menu-preview-grid strong {
  font-size: 17px;
}
.menu-preview-grid small {
  color: var(--muted);
}
.center {
  text-align: center;
  margin-top: 34px;
}
.sister-card {
  min-height: 420px;
  background: linear-gradient(90deg, #c7a85af0, #c7a85a40),
    url("../images/sala-aranzacja-1_jpg.jpg") center/cover;
  color: #000;
  padding: 100px;
  display: flex;
  align-items: center;
}
.sister-card > div {
  max-width: 600px;
}
.sister-card h2 {
  font-size: 56px;
}
.sister-card p {
  font-size: 18px;
}
.cta {
  background: var(--green);
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta h2 {
  font-size: 52px;
}
.page-hero {
  position: relative;
  background: var(--green);
  color: #fff;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
}
.page-hero.compact {
  min-height: 360px;
  background: radial-gradient(
    circle at 75% 20%,
    #a3172a 0,
    #7c0314 42%,
    #4c010d 100%
  );
}
.page-hero.image-hero {
  min-height: 520px;
  overflow: hidden;
}
.page-hero.image-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(48px, 6vw, 76px);
}
.page-hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
}
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps {
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
}
.step b {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
}
.photo-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.photo-pair > div:first-child {
  height: 500px;
  border-radius: 26px;
  overflow: hidden;
}
.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-toolbar {
  position: sticky;
  top: 84px;
  z-index: 30;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.menu-search {
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #fff;
  gap: 10px;
}
.menu-search span {
  font-size: 22px;
}
.menu-search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-size: 16px;
}
.chips {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 12px 0 0;
  scrollbar-width: none;
}
.chip {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.chip.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.search-count {
  font-size: 12px;
  color: var(--muted);
  height: 18px;
  margin-top: 8px;
}
.menu-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.menu-aside {
  position: sticky;
  top: 250px;
}
.aside-card {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 26px;
}
.aside-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.aside-card a {
  display: block;
  font-weight: 500;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-section {
  padding-bottom: 54px;
  scroll-margin-top: 240px;
}
.menu-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 2px solid var(--green);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.menu-section-title h2 {
  font-size: 28px !important;
  font-family: Georgia, serif;
  margin: 0;
}
.menu-section-title span {
  font-size: 12px;
  color: var(--muted);
}
.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid #ebe6da;
  font-size: 15px;
}
.dish-name {
  min-width: 0;
}
.dots {
  flex: 1;
  border-bottom: 1px dotted #c9c2b5;
  min-width: 16px;
}
.menu-item strong {
  white-space: nowrap;
}
.menu-item.hidden,
.menu-section.hidden {
  display: none;
}
.menu-note {
  padding: 30px;
  background: var(--cream);
  border-radius: 20px;
}
.menu-note p {
  color: var(--muted);
}
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.store-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
}
.store-card h2 {
  font-size: 36px;
}
.store-card p {
  color: var(--muted);
}
.store-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.store-hours small {
  color: var(--muted);
  margin-top: 7px;
}
.store-phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}
.store-gallery {
  background: var(--cream);
}
.store-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.store-photo {
  margin: 0;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}
.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b2b-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.b2b-points > div {
  padding: 30px;
  background: var(--cream);
  border-radius: 18px;
}
.b2b-points b {
  color: var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}
.contact-person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-person span {
  display: flex;
  flex-direction: column;
}
.contact-person small {
  color: var(--muted);
}
.contact-person b {
  font-size: 18px;
}
.email-value {
  font-size: 14px !important;
}
.company-card {
  background: var(--green);
  color: #fff;
  border-radius: 26px;
  padding: 42px;
}
.company-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
}
.company-card p {
  color: rgba(255, 255, 255, 0.72);
}
.contact-quick {
  background: var(--cream);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quick-grid a {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.quick-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
}
.quick-grid strong {
  font-size: 20px;
  margin-top: 20px;
}
.quick-grid small {
  color: var(--muted);
  margin-top: 5px;
}
.not-found {
  min-height: 70vh;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}
.footer {
  background: #2d0008;
  color: #fff;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 360px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-grid a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand {
  font-family: Georgia, serif;
  font-size: 28px;
}
.footer-brand span {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 22px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px;
  }
  .menu-toggle span {
    height: 2px;
    background: #fff;
    width: 24px;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--green);
    padding: 28px 22px 34px;
    flex-direction: column;
    gap: 3px;
    transform: translateY(-130%);
    transition: 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav.open {
    transform: none;
  }
  .mobile-nav a {
    padding: 13px 0;
    font-size: 19px;
    font-weight: 750;
  }
  .mobile-phone {
    color: #f0cd8a;
  }
  .hero {
    min-height: 620px;
  }
  .hero-content {
    padding: 130px 22px 130px;
    margin: 0;
  }
  .hero-note {
    left: 22px;
    right: auto;
    bottom: 25px;
  }
  .split,
  .photo-pair,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .feature-grid,
  .steps-grid,
  .b2b-points {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .photo-tile:first-child {
    grid-column: span 2;
  }
  .menu-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-aside {
    position: static;
  }
  .menu-aside .aside-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .aside-card p,
  .aside-card strong {
    grid-column: 1/-1;
  }
  .menu-toolbar {
    top: 84px;
  }
  .store-photos {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .site-header {
    height: 72px;
  }
  .brand img {
    width: 140px;
  }
  .header-call {
    font-size: 12px;
  }
  .mobile-nav {
    inset: 72px 0 auto 0;
  }
  .hero {
    min-height: 590px;
  }
  .hero-content {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-note {
    gap: 10px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .hero-note span + span {
    padding-left: 10px;
  }
  .section {
    padding: 72px 0;
  }
  .section h2,
  .contact-main h2 {
    font-size: 42px;
  }
  .feature-grid {
    padding-top: 0;
  }
  .photo-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .photo-tile,
  .photo-tile:first-child {
    grid-column: auto;
    height: 250px;
  }
  .menu-preview-grid {
    grid-template-columns: 1fr;
  }
  .sister-card {
    padding: 34px;
    min-height: 420px;
  }
  .sister-card h2 {
    font-size: 44px;
  }
  .cta h2 {
    font-size: 42px;
  }
  .page-hero {
    min-height: 310px;
    padding: 62px 0;
  }
  .page-hero.image-hero {
    min-height: 430px;
  }
  .menu-toolbar {
    top: 72px;
  }
  .chips {
    margin-right: -14px;
  }
  .menu-page {
    padding-top: 52px;
  }
  .menu-aside .aside-card {
    display: block;
  }
  .menu-item {
    gap: 7px;
    font-size: 14px;
  }
  .menu-section-title h2 {
    font-size: 25px !important;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .store-card {
    padding: 28px;
  }
  .store-photos {
    grid-template-columns: 1fr 1fr;
  }
  .store-photo {
    height: 180px;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .contact-person {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-person b {
    font-size: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .photo-pair > div:first-child {
    height: 340px;
  }
}

/* v2 — burgundowa identyfikacja i przewijane szybkie menu */
:root {
  --ink: #231b1d;
  --green: #7c0314;
  --green2: #5b020f;
  --cream: #f6f0e9;
  --paper: #fffdf9;
  --muted: #74696b;
  --line: #e2d8d9;
  --shadow: 0 18px 45px rgba(60, 3, 13, 0.12);
}
.site-header {
  background: rgba(124, 3, 20, 0.96);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(44, 0, 8, 0.9) 0%,
    rgba(55, 0, 10, 0.6) 48%,
    rgba(65, 0, 11, 0.14) 100%
  );
}
.page-hero.compact {
  background: radial-gradient(
    circle at 75% 20%,
    #a3172a 0,
    #7c0314 42%,
    #4c010d 100%
  );
}
.sister-card {
  background: linear-gradient(90deg, #c7a85af0, #c7a85a40),
    url("../images/sala-aranzacja-1_jpg.jpg") center/cover;
}
@supports (background-image: image-set(url(x.avif) type("image/avif"))) {
  .sister-card {
    background-image: linear-gradient(90deg, #c7a85af0, #c7a85a40),
      image-set(
        url("../images/sala-aranzacja-1_jpg.avif") type("image/avif"),
        url("../images/sala-aranzacja-1_jpg.webp") type("image/webp"),
        url("../images/sala-aranzacja-1_jpg.jpg") type("image/jpeg")
      );
    background-position: center;
    background-size: cover;
  }
}

.section.sister {
    padding: 0px 0 !important;
    width: 100%;
}
.footer {
  background: #2d0008;
}
.menu-toolbar {
  position: sticky;
  top: 84px;
  z-index: 30;
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0 12px;
  box-shadow: 0 10px 30px rgba(60, 3, 13, 0.05);
}
.menu-tools {
  display: grid;
  gap: 10px;
}
.menu-search {
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #fff;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(60, 3, 13, 0.04);
}
.menu-search:focus-within {
  border-color: rgba(124, 3, 20, 0.45);
  box-shadow: 0 0 0 4px rgba(124, 3, 20, 0.07);
}
.menu-search span {
  color: var(--green);
}
.category-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
}
.category-arrow {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.category-arrow:hover,
.category-arrow:focus-visible {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  outline: none;
}
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 7px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 3, 20, 0.35) transparent;
  overscroll-behavior-inline: contain;
}
.chips::-webkit-scrollbar {
  height: 5px;
}
.chips::-webkit-scrollbar-thumb {
  background: rgba(124, 3, 20, 0.35);
  border-radius: 99px;
}
.chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  padding: 10px 15px;
  transition: 0.2s;
}
.chip:hover {
  border-color: rgba(124, 3, 20, 0.35);
  color: var(--green);
}
.chip.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 8px 18px rgba(124, 3, 20, 0.18);
}
.search-count {
  min-height: 18px;
  height: auto;
  margin-top: 0;
}
#wspolpraca {
  scroll-margin-top: 130px;
}
@media (max-width: 980px) {
  .desktop-nav {
    gap: 20px;
  }
  .menu-toolbar {
    top: 84px;
  }
}
@media (max-width: 640px) {
  .menu-toolbar {
    top: 72px;
  }
  .category-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
  }
  .category-arrow {
    height: 36px;
  }
  .chip {
    padding: 9px 12px;
  }
  .menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: start;
    padding: 14px 2px;
  }
  .menu-item .dots {
    display: none;
  }
  .menu-item strong {
    text-align: right;
    color: var(--green);
    white-space: normal;
  }
  .dish-name {
    overflow-wrap: anywhere;
  }
}
