@font-face {
  font-family: "La Cucaracha";
  src: url("../fonts/LaCucaracha.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --espresso: #161411;
  --espresso-2: #1e1b17;
  --ink: #1a1a1a;
  --paper: #f3eee6;
  --cream: #faf7f2;
  --surface: #fffdf9;
  --gold: #4caf50;
  --gold-dark: #3d9142;
  --gold-soft: #e8f5e9;
  --muted: #666666;
  --text-body: #424242;
  --line: #e4dcd0;
  --line-dark: rgb(76 175 80 / 22%);
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --font-display: "La Cucaracha", Georgia, serif;
  --radius: 14px;
  --wrap: min(1280px, calc(100% - 3rem));
  --header-h: 112px;
  --section-space: 64px;
  --shadow: 0 1px 2px rgb(22 20 17 / 6%), 0 16px 40px rgb(22 20 17 / 7%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

main [id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow--on-dark {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #f4efe6;
  border-color: rgb(244 239 230 / 28%);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--small {
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn--nav {
  min-height: 3.25rem;
  padding: 0.75rem 1.55rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #f4efe6;
  text-decoration: none;
  border: 1.5px solid rgb(244 239 230 / 22%);
  background: rgb(244 239 230 / 6%);
  font: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.icon-btn--light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.icon-btn--light:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  background: rgb(22 20 17 / 94%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid rgb(76 175 80 / 22%);
}

.site-header.is-scrolled {
  background: rgb(22 20 17 / 98%);
  box-shadow: 0 12px 32px rgb(0 0 0 / 32%);
}

.site-header.is-nav-open {
  background: var(--espresso);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right > a:not(.btn):not(.icon-btn) {
  color: #f4efe6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-left a:hover,
.nav-right > a:not(.btn):not(.icon-btn):hover {
  color: var(--gold);
}

.brand {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  text-decoration: none;
}

.brand__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1.5px solid rgb(244 239 230 / 22%);
  background: rgb(244 239 230 / 6%);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: #f4efe6;
  border-radius: 2px;
  transform: translateX(-50%);
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  top: 17px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  max-height: min(78dvh, calc(100dvh - var(--header-h)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 1.15rem 1.35rem;
  background: rgb(22 20 17 / 98%);
  border-bottom: 2px solid rgb(76 175 80 / 22%);
  box-shadow: 0 24px 48px rgb(0 0 0 / 45%);
}

.site-nav-mobile.is-open,
.site-nav-mobile:not([hidden]) {
  display: flex;
}

.site-nav-mobile[hidden] {
  display: none !important;
}

.site-nav-mobile a {
  color: #f4efe6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 0.35rem;
  border-bottom: 1px solid rgb(244 239 230 / 8%);
}

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

.site-nav-mobile a.site-nav-mobile__cta {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  text-align: center;
}

.site-nav-mobile a.site-nav-mobile__cta:hover,
.site-nav-mobile a.site-nav-mobile__cta:focus-visible {
  background: var(--gold-dark);
  color: #fff;
}

.site-nav-mobile a.site-nav-mobile__admin {
  border-bottom: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgb(244 239 230 / 55%);
  padding-top: 0.85rem;
  padding-bottom: 0.35rem;
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  background: var(--espresso);
  color: #f4efe6;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 68% 46%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(22 20 17 / 84%) 0%, rgb(22 20 17 / 58%) 36%, rgb(22 20 17 / 22%) 64%, rgb(22 20 17 / 16%) 100%),
    linear-gradient(180deg, rgb(22 20 17 / 42%) 0%, transparent 26%, transparent 78%, rgb(22 20 17 / 38%) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero__copy h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hero__lead {
  margin: 0 0 32px;
  max-width: 520px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #e0e0e0;
  text-transform: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin: 2.25rem 0 0;
  padding: 0;
}

.hero__meta div {
  min-width: 10rem;
}

.hero__meta dt {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__meta dd {
  margin: 0;
  font-size: 1.02rem;
  color: #f4efe6;
}

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

.hero__meta a:hover {
  color: var(--gold);
}

.hero__visual {
  display: grid;
  justify-items: center;
}

.hero__logo {
  width: min(100%, clamp(280px, 28vw, 520px));
  height: auto;
  filter: brightness(0) invert(1);
}

.full-banner {
  width: 100vw;
  max-width: 100%;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.full-banner img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.22;
}

/* Sections */

.section {
  padding: var(--section-space) 0;
}

.section-head {
  margin-bottom: 48px;
  max-width: 42rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-head--center h2 {
  margin-bottom: 16px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.section-head--center p {
  max-width: 600px;
  margin: 0 auto;
}

.panel__hint {
  margin: 0 0 1rem;
  color: var(--muted);
}

.panel__hint[data-type="error"] {
  color: #b42318;
}

.panel__hint[hidden],
.panel__hint:empty {
  display: none;
}

/* Pillars */

.section--pillars {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  padding-block: clamp(5.25rem, 7.5vw, 7.25rem);
}

.pillars-bg {
  position: absolute;
  right: -4%;
  top: 50%;
  z-index: 0;
  width: min(50vw, 620px);
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.14;
}

.pillars-bg img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.section--pillars > .wrap {
  position: relative;
  z-index: 1;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pillars__viewport {
  width: 100%;
}

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

.pillars__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  position: relative;
  z-index: 2;
}

.pillars__dot {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pillars__dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.pillars__dot.is-active::before {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.2);
}

.pillars__dot:hover::before,
.pillars__dot:focus-visible::before {
  border-color: var(--gold);
}

.pillar {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  min-width: 0;
  min-height: 100%;
}

.pillar__icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--gold-dark);
  background: transparent;
  border: 1px solid rgb(76 175 80 / 35%);
}

.pillar__icon iconify-icon {
  display: block;
  color: inherit;
}

.pillar:hover .pillar__icon {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.pillar__index {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
}

.pillar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.pillar p {
  margin: 0.75rem 0 0;
  max-width: 280px;
  color: var(--text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Menu */

.section--menu {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.menu-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(56px, 6vw, 100px);
  overflow: hidden;
  pointer-events: none;
  container-type: size;
}

.menu-rail img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100cqh;
  height: 100cqw;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0.22;
}

.section--menu > .wrap {
  position: relative;
  z-index: 1;
  padding-left: clamp(1.25rem, 3vw, 2rem);
}

.menu-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.menu-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-card__kicker {
  margin: 0 0 0.55rem;
  display: inline-flex;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card__kicker[data-menu-date] {
  letter-spacing: 0.04em;
}

.menu-card__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-card__head p {
  margin: 0.55rem 0 0;
  color: var(--text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.menu-card__hint {
  margin: 0;
  padding: 2.4rem 1.15rem;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
}

.menu-card__hint[data-type="error"] {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.28);
}

.menu-card .menu-preview {
  position: relative;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
  aspect-ratio: 1 / 1.414;
  height: min(62vh, 720px);
  max-height: min(62vh, 720px);
  overflow: hidden;
}

.menu-card .menu-preview__frame-link {
  display: block;
  height: 100%;
  overflow: hidden;
}

.menu-card .menu-preview__canvas {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.menu-card .menu-preview__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 2.5rem 1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgb(22 20 17 / 72%) 58%);
  pointer-events: none;
}

.menu-card .menu-link {
  pointer-events: auto;
  margin-top: 0;
}

.menu-link,
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.menu-link:hover,
.doc-link:hover {
  background: var(--gold-dark);
  color: #fff;
}

.menu-preview__loading {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

.menu-preview__loading[data-type="error"] {
  color: #b42318;
}

.menu-preview__actions .menu-link {
  margin-top: 0;
}

/* Order */

.section--order {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 92% 8%, rgb(76 175 80 / 16%), transparent 58%),
    radial-gradient(700px 420px at 8% 90%, rgb(76 175 80 / 8%), transparent 55%),
    var(--espresso);
  color: #f4efe6;
}

.section--order.has-photo-bg {
  background:
    linear-gradient(90deg, rgb(22 20 17 / 88%) 0%, rgb(22 20 17 / 72%) 45%, rgb(22 20 17 / 58%) 100%),
    url("../img/pozadie-donaska-jedlo.webp") center / cover no-repeat;
}

.section--order::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgb(244 239 230 / 3.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(244 239 230 / 3.5%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 10%, transparent 72%);
  pointer-events: none;
}

.section--order.has-photo-bg::before {
  opacity: 0.35;
}

.section--order > .wrap {
  position: relative;
  z-index: 1;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.order__offer h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.order__offer p {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: #d0d0d0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.order__offer strong {
  color: #fff;
}

.order__discount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin-top: -1px;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgb(76 175 80 / 40%);
  border-top: 0;
  background:
    linear-gradient(90deg, rgb(76 175 80 / 22%), rgb(76 175 80 / 10%) 55%, rgb(76 175 80 / 18%)),
    rgb(18 22 18 / 92%);
  text-align: center;
}

.order__badge-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.order__badge-title {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.order__badge-note {
  font-size: 0.85rem;
  color: rgb(244 239 230 / 65%);
}

.order__platforms {
  display: grid;
  gap: 0;
  min-width: 0;
}

.order__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(244 239 230 / 10%);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 18px 48px rgb(0 0 0 / 35%);
}

.order__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  transition: transform 0.55s ease;
}

.order__platforms:hover .order__media img {
  transform: scale(1.03);
}

.order__platforms-body {
  margin-top: -1px;
  padding: 1.15rem 1.1rem 1.2rem;
  border: 1px solid rgb(244 239 230 / 10%);
  border-top: 0;
  background: rgb(255 255 255 / 3%);
  backdrop-filter: blur(8px);
}

.order__platforms-title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(244 239 230 / 55%);
}

.order-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-platform {
  display: grid;
  gap: 0.55rem;
}

.order-platform__logo {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 0.55rem 0.4rem;
  background: #fff;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.order-platform:hover .order-platform__logo {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgb(0 0 0 / 28%);
}

.order-platform__logo img {
  width: auto;
  max-width: 92%;
  height: 40px;
  object-fit: contain;
}

.order-platform__logo--bistro {
  min-height: 84px;
}

.order-platform__logo--bistro img {
  height: 56px;
  max-width: 98%;
}

.order-platform .btn--ghost {
  width: 100%;
}

/* Events */

.section--events {
  background: var(--paper);
}

.events-nav {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.events-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, calc((100% - 2rem) / 3));
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0.15rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.event-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.event-card__media {
  aspect-ratio: 16 / 10;
  background: var(--espresso-2);
  overflow: hidden;
}

.event-card__media--empty {
  background:
    radial-gradient(circle at 50% 50%, rgb(76 175 80 / 22%), transparent 62%),
    var(--espresso);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__body {
  padding: 1.05rem 1.1rem 1.2rem;
}

.event-card__body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.event-card .event-date {
  margin: 0 0 0.45rem;
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 600;
}

.section-head--events h2,
.section-head--split h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.section-head--split p {
  font-size: 16px;
  margin-bottom: 0;
}

.event-card .event-desc {
  margin: 0;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hours */

.section--hours {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(250 247 242 / 82%) 0%, rgb(243 238 230 / 86%) 100%),
    url("../img/pozadie-interier-otvaracie-hodiny.webp") center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.section--hours > .wrap {
  position: relative;
  z-index: 1;
}

.hours__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.15rem, 2vw, 1.75rem);
  align-items: stretch;
}

.hours-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.hours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list .day {
  font-weight: 600;
}

.hours-list .time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.hours-list li.is-today .day,
.hours-list li.is-today .time {
  color: var(--gold-dark);
}

.hours-address__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hours-address__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hours-address__link {
  display: inline-block;
  margin: 0.85rem 0 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.hours-address__link:hover {
  text-decoration: underline;
}

.hours-map {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  margin-top: auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

/* Documents leftover */

.docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.docs-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.docs-list .doc-title {
  font-weight: 600;
}

/* Footer */

.site-footer {
  background: var(--espresso);
  color: #f4efe6;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem) 1.75rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-logo {
  display: inline-grid;
  width: 108px;
  text-decoration: none;
}

.footer-logo__img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-tag {
  margin: 0.85rem 0 1.1rem;
  color: rgb(244 239 230 / 58%);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #f4efe6;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-address {
  margin: 0 0 1.15rem;
  line-height: 1.5;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-payments img {
  height: 26px;
  width: auto;
  max-width: 68px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 0.18rem 0.32rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.1rem 0 1.3rem;
  color: rgb(244 239 230 / 48%);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom__note a:hover {
  color: #fff;
}

@media (min-width: 1400px) {
  :root {
    --wrap: min(1480px, calc(100% - 5rem));
  }

  .hero__grid {
    gap: clamp(2.5rem, 5vw, 6rem);
  }

  .hero__media img {
    object-position: 72% 44%;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgb(22 20 17 / 80%) 0%, rgb(22 20 17 / 46%) 34%, rgb(22 20 17 / 12%) 60%, rgb(22 20 17 / 8%) 100%),
      linear-gradient(180deg, rgb(22 20 17 / 32%) 0%, transparent 24%, transparent 82%, rgb(22 20 17 / 32%) 100%);
  }

  .menu-card .menu-preview {
    height: min(64vh, 780px);
    max-height: min(64vh, 780px);
  }
}

@media (min-width: 1800px) {
  :root {
    --wrap: min(1680px, calc(100% - 6.5rem));
    --section-space: 8rem;
  }

  .events-carousel {
    grid-auto-columns: minmax(320px, calc((100% - 2.4rem) / 3.25));
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 84px;
  }

  .nav-left {
    display: none;
  }

  .nav-left a,
  .nav-right > a:not(.btn):not(.icon-btn) {
    display: none;
  }

  .nav-right .icon-btn {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .btn--nav {
    display: inline-flex;
    min-height: 2.65rem;
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }

  .brand {
    width: 64px;
    height: 64px;
    justify-self: start;
  }

  .nav-right {
    gap: 0.55rem;
  }

  .order {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .order__offer {
    text-align: center;
  }

  .order__offer h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(2.15rem, 8vw, 3rem);
    line-height: 1.1;
  }

  .order__offer p {
    margin: 0 auto 1.25rem;
    max-width: 28rem;
    font-size: 1rem;
  }

  .order__offer .btn {
    width: min(100%, 22rem);
  }

  .section--order.has-photo-bg {
    background:
      linear-gradient(180deg, rgb(22 20 17 / 88%) 0%, rgb(22 20 17 / 78%) 42%, rgb(22 20 17 / 86%) 100%),
      url("../img/pozadie-donaska-jedlo.webp") center / cover no-repeat;
  }

  .order__media {
    border-radius: 20px 20px 0 0;
  }

  .order__media img {
    aspect-ratio: 16 / 9;
    border-radius: 20px 20px 0 0;
  }

  .order__discount {
    gap: 0.25rem 0.55rem;
    padding: 0.7rem 0.85rem;
  }

  .order__badge-title {
    font-size: 0.9rem;
  }

  .order__platforms-body {
    padding: 0.9rem 0.85rem 1rem;
  }

  .order__platforms-title {
    margin-bottom: 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .order-grid {
    gap: 0.5rem;
  }

  .order-platform {
    gap: 0.4rem;
  }

  .order-platform__logo {
    min-height: 56px;
    padding: 0.4rem 0.3rem;
  }

  .order-platform__logo img {
    height: 32px;
  }

  .order-platform__logo--bistro {
    min-height: 68px;
  }

  .order-platform__logo--bistro img {
    height: 44px;
  }

  .order-platform .btn--small {
    min-height: 2.4rem;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }

  .hours__grid,
  .menu-offer__grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
    padding-bottom: 1.75rem;
    text-align: center;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
  }

  .footer-logo {
    width: 88px;
  }

  .footer-tag {
    margin: 0.65rem 0 0.9rem;
    max-width: 18rem;
    font-size: 0.88rem;
  }

  .footer-social {
    justify-content: center;
    gap: 0.65rem;
  }

  .footer-social .icon-btn {
    width: 46px;
    height: 46px;
  }

  .footer-heading {
    margin-bottom: 0.75rem;
  }

  .footer-links li + li {
    margin-top: 0.15rem;
  }

  .footer-links a {
    display: inline-block;
    padding: 0.4rem 0.2rem;
    font-size: 0.92rem;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
    border-top: 1px solid rgb(244 239 230 / 8%);
  }

  .footer-address {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
  }

  .footer-payments {
    justify-content: center;
    gap: 0.4rem;
  }

  .pillars__track {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero__logo {
    width: min(100%, 320px);
  }

  .events-carousel {
    grid-auto-columns: minmax(240px, 78%);
  }

  .hours-map {
    height: 240px;
  }

  .pillars-bg {
    width: min(58vw, 280px);
    opacity: 0.08;
    right: -18%;
    top: 42%;
  }

  .section--pillars {
    padding-block: clamp(2.5rem, 7vw, 3.5rem);
  }

  .section--pillars .section-head {
    margin-bottom: 1.35rem;
    text-align: center;
    max-width: none;
  }

  .section--pillars .section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.12;
  }

  .section--pillars .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
  }

  .pillars {
    gap: 0.65rem;
  }

  .pillars:not(.pillars--static) .pillar,
  .pillars--static .pillar {
    padding: 1.15rem 1.05rem 1.25rem;
  }

  .pillar__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.85rem;
  }

  .pillar__icon iconify-icon {
    width: 28px;
    height: 28px;
  }

  .pillar__index {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
  }

  .pillar h3 {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
  }

  .pillar p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .pillars__dots {
    gap: 0.15rem;
    margin-top: 0;
  }

  .pillars__dot {
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media (max-width: 960px) and (prefers-reduced-motion: no-preference) {
  .pillars:not(.pillars--static) .pillars__viewport {
    overflow: hidden;
  }

  .pillars:not(.pillars--static) .pillars__track {
    display: flex;
    gap: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .pillars:not(.pillars--static) .pillar {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .pillars:not(.pillars--static) .pillar p {
    max-width: none;
  }

  .pillars:not(.pillars--static) .pillars__dots {
    display: flex;
  }

  .pillars--static .pillars__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    transform: none !important;
  }

  .pillars--static .pillars__dots {
    display: none;
  }
}

@media (max-width: 800px) {
  :root {
    --header-h: 76px;
    --wrap: min(1280px, calc(100% - 1.5rem));
  }

  .brand {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span:nth-child(1) {
    top: 15px;
  }

  .nav-toggle span:nth-child(2) {
    top: 21px;
  }

  .nav-toggle span:nth-child(3) {
    top: 27px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1),
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
  }

  .btn--nav {
    min-height: 2.5rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.86rem;
  }

  .site-nav-mobile {
    padding-inline: max(1rem, calc((100% - var(--wrap)) / 2 + 0.25rem));
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 1.1rem) 0 1.75rem;
  }

  .hero__media img {
    object-position: 58% 38%;
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgb(22 20 17 / 72%) 0%, rgb(22 20 17 / 48%) 28%, rgb(22 20 17 / 55%) 62%, rgb(22 20 17 / 82%) 100%),
      linear-gradient(90deg, rgb(22 20 17 / 35%) 0%, transparent 50%, rgb(22 20 17 / 28%) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.15rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo {
    width: min(46vw, 168px);
  }

  .hero__copy {
    max-width: 26rem;
  }

  .hero__copy .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: var(--gold);
  }

  .hero__copy h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 8.2vw, 2.7rem);
    line-height: 1.12;
  }

  .hero__lead {
    margin: 0 auto 1.25rem;
    max-width: 22rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero__actions {
    justify-content: center;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
  }

  .hero__meta {
    justify-content: center;
    gap: 0.85rem 1.5rem;
    margin-top: 1.35rem;
  }

  .hero__meta div {
    min-width: 0;
  }

  .hero__meta dt {
    font-size: 0.65rem;
  }

  .hero__meta dd {
    font-size: 0.92rem;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    padding: 1rem 0 1.35rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .btn--nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer-col:last-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-logo {
    width: 76px;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .hero {
    padding: calc(var(--header-h) + 0.85rem) 0 1.4rem;
  }

  .hero__logo {
    width: min(42vw, 148px);
  }

  .hero__copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .hero__meta {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
}

body.nav-lock {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .icon-btn,
  .order-platform__logo,
  .order__media img,
  .nav-toggle span,
  .pillars__track,
  .pillars__dot {
    transition: none;
  }

  .order__platforms:hover .order__media img {
    transform: none;
  }
}
