/* ============================================
   TWOSSTO — bold street-food burgerownia
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Inter:wght@400;500;600;700;800;900&family=Permanent+Marker&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --red: #e63946;
  --red-deep: #c1121f;
  --yellow: #ffd60a;
  --yellow-deep: #f1a208;
  --green: #5a8a3a;
  --green-bright: #8db255;
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --ink-3: #2d2d2d;
  --cream: #fff8e7;
  --cream-2: #f5edd3;
  --paper: #faf3e0;
  --gray: #8a8a8a;
  --gray-light: rgba(255, 248, 231, 0.6);

  --font-display: 'Anton', sans-serif;
  --font-display-2: 'Archivo Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-marker: 'Permanent Marker', cursive;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  position: relative;
  min-height: 100vh;
}

/* tekstura papieru/kraft */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: multiply;
}

main, nav, footer, section, .top-bar { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

/* ============================================
   CUSTOM KURSOR — celownik z burgerem
   ============================================ */
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background: rgba(255, 214, 10, 0.3);
  transition: width 0.2s, height 0.2s, background 0.2s;
  top: 0; left: 0;
}

.cursor-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px dashed var(--red);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  box-shadow: 0 0 8px var(--red);
}

.cursor-ring.expand {
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.3);
}

.cursor-ring.expand::before { border-color: var(--yellow); }

@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
  button { cursor: pointer; }
  .cursor-ring, .cursor-dot { display: none; }
}

/* ============================================
   TOP STRIP — ostrzegawcze paski
   ============================================ */
.top-strip {
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--red);
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: marquee-fast 35s linear infinite;
  gap: 40px;
  align-items: center;
}

.top-strip-item {
  font-family: var(--font-display-2);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-strip-item .sep { color: var(--red); }

@keyframes marquee-fast {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  background: var(--cream);
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 80;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}

.nav-logo-mark {
  width: 56px;
  height: 56px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(-3deg);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-logo-mark::before {
  content: 'T';
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--yellow);
  line-height: 1;
  -webkit-text-stroke: 2px var(--ink);
  margin-top: 4px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 0.95;
}

.nav-logo-text .name em {
  font-style: normal;
  color: var(--red);
}

.nav-logo-text .sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-3);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display-2);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 18px;
  transition: all 0.2s;
  position: relative;
  border: 2px solid transparent;
}

.nav-links a:hover {
  background: var(--yellow);
  border-color: var(--ink);
  transform: rotate(-1deg);
}

.nav-links a.active {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}

.nav-cta {
  background: var(--red);
  color: var(--cream);
  padding: 14px 24px;
  font-family: var(--font-display-2);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.nav-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: var(--ink);
  color: var(--yellow);
  border: 3px solid var(--ink);
  padding: 10px 14px;
  font-family: var(--font-display-2);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 14px;
    gap: 6px;
    border-top: 4px solid var(--red);
  }
  .nav-links.open a {
    width: 100%;
    color: var(--cream);
    border-color: transparent;
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: var(--red);
    color: var(--cream);
    transform: none;
  }
}

/* ============================================
   STEMPEL "100% WOŁOWINA" — rotujący
   ============================================ */
.stamp-circle {
  width: 140px;
  height: 140px;
  position: relative;
  display: inline-block;
}

.stamp-circle svg {
  width: 100%;
  height: 100%;
  animation: stamp-spin 25s linear infinite;
}

.stamp-circle .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  text-align: center;
  line-height: 0.85;
}

.stamp-circle .center .num {
  font-size: 52px;
  color: var(--ink);
  display: block;
  -webkit-text-stroke: 1px var(--red);
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   PRZYCISKI
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display-2);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--red);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--red);
}

.btn-red {
  background: var(--red);
  color: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-red:hover { box-shadow: 9px 9px 0 var(--ink); }
.btn-red:active { box-shadow: 0 0 0 var(--ink); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-yellow:hover { box-shadow: 9px 9px 0 var(--ink); }
.btn-yellow:active { box-shadow: 0 0 0 var(--ink); }

.btn .arr {
  display: inline-block;
  transition: transform 0.2s;
  font-weight: 900;
}

.btn:hover .arr { transform: translateX(4px); }

/* ============================================
   HALFTONE BG (komiksowe kropki)
   ============================================ */
.halftone {
  background-image: radial-gradient(circle, var(--ink) 1.5px, transparent 2px);
  background-size: 14px 14px;
}

.halftone-yellow {
  background: var(--yellow);
  background-image: radial-gradient(circle, var(--ink) 1.5px, transparent 2px);
  background-size: 14px 14px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 60px var(--gutter) 100px;
  border-bottom: 4px solid var(--ink);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 18px;
  font-family: var(--font-display-2);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transform: rotate(-2deg);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.hero-eyebrow::before {
  content: '★';
  color: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 168px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title .line { display: block; }

.hero-title .red {
  color: var(--red);
  display: inline-block;
}

.hero-title .stroke {
  -webkit-text-stroke: 3px var(--ink);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title .yellow-bg {
  background: var(--yellow);
  padding: 0 16px;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 var(--ink);
  border: 3px solid var(--ink);
}

.hero-title .marker {
  font-family: var(--font-marker);
  color: var(--red);
  font-size: 0.55em;
  display: inline-block;
  transform: rotate(-4deg);
  -webkit-text-stroke: 0;
  vertical-align: top;
  margin-top: 0.2em;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-desc .hl {
  background: var(--yellow);
  padding: 2px 6px;
  font-weight: 800;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 3px dashed var(--ink);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta-item .ico {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-meta-item .ico svg { width: 18px; height: 18px; }

.hero-meta-item .lbl {
  font-family: var(--font-display-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}

.hero-meta-item .val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-meta-item .val a { color: inherit; }
.hero-meta-item .val a:hover { color: var(--red); }

/* HERO PRAWA STRONA — ilustracja burgera */
.hero-art {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-bg {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red);
  background-image: radial-gradient(circle, var(--ink) 1.5px, transparent 2px);
  background-size: 18px 18px;
}

.hero-art-stamp {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 3;
  transform: rotate(15deg);
}

.hero-art-stamp .stamp-circle {
  width: 140px;
  height: 140px;
}

.hero-art-burger {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 480px;
  filter: drop-shadow(8px 8px 0 var(--ink));
}

.hero-art-burger svg {
  width: 100%;
  height: auto;
  animation: burger-float 4s ease-in-out infinite;
}

@keyframes burger-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.hero-art-marker {
  position: absolute;
  bottom: -20px;
  left: -10px;
  z-index: 3;
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 10px 18px;
  transform: rotate(-5deg);
  font-family: var(--font-marker);
  font-size: 22px;
  color: var(--red);
  box-shadow: 5px 5px 0 var(--ink);
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .hero-art-stamp { right: -10px; top: -20px; }
  .hero-art-stamp .stamp-circle { width: 110px; height: 110px; }
}

@media (max-width: 600px) {
  .hero-meta { gap: 16px; }
  .hero-meta-item .val { font-size: 17px; }
}

/* ============================================
   MARQUEE — taśma z menu
   ============================================ */
.marquee {
  background: var(--red);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
  gap: 40px;
  align-items: center;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-item .star {
  color: var(--yellow);
  font-size: 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head {
  margin-bottom: 60px;
  text-align: center;
}

.section-head.left { text-align: left; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 18px;
  font-family: var(--font-display-2);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transform: rotate(-1.5deg);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.section-eyebrow::before {
  content: '★';
  color: var(--red);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 .red { color: var(--red); }
.section-head h2 .stroke {
  -webkit-text-stroke: 2px var(--ink);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-head h2 .marker {
  font-family: var(--font-marker);
  color: var(--red);
  font-size: 0.65em;
  display: inline-block;
  transform: rotate(-3deg);
  vertical-align: top;
  margin-top: 0.15em;
}

.section-head p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 16px auto 0;
}

.section-head.left p { margin-left: 0; }

/* ============================================
   MENU SECTION — burgery
   ============================================ */
.menu-section {
  padding: 100px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.menu-section.dark {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  padding: 100px var(--gutter);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.menu-section.dark .section-head h2 { color: var(--cream); }
.menu-section.dark .section-head h2 .stroke { -webkit-text-stroke-color: var(--cream); }
.menu-section.dark .section-head p { color: var(--gray-light); }
.menu-section.dark .section-eyebrow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--cream);
  box-shadow: 4px 4px 0 var(--red);
}

.menu-section.dark .section-head .inner {
  max-width: var(--container);
  margin: 0 auto 60px;
}

/* SIATKA BURGERÓW */
.burger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.burger-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  padding: 32px 28px 28px;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.burger-card:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: 10px 10px 0 var(--red);
}

.burger-card.featured {
  background: var(--yellow);
}

.burger-card.spicy {
  background: var(--red);
  color: var(--cream);
}

.burger-card .badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display-2);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 3px solid var(--ink);
  transform: rotate(-3deg);
  z-index: 2;
}

.burger-card.featured .badge {
  background: var(--ink);
  color: var(--yellow);
}

.burger-card.spicy .badge {
  background: var(--yellow);
  color: var(--ink);
}

.burger-card .badge.fire {
  background: var(--ink);
  color: var(--yellow);
}

.burger-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.burger-card.spicy .num { color: rgba(255, 248, 231, 0.7); }

.burger-card h3 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
}

.burger-card.spicy h3 { color: var(--cream); }

.burger-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 22px;
  flex: 1;
}

.burger-card.spicy p { color: rgba(255, 248, 231, 0.9); }

.burger-card .price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 18px;
  border: 3px solid var(--ink);
  align-self: flex-start;
  box-shadow: 4px 4px 0 var(--red);
  transform: rotate(-2deg);
}

.burger-card.featured .price {
  background: var(--red);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
}

.burger-card.spicy .price {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.burger-card .price .num {
  font-size: 32px;
  letter-spacing: 0;
  color: inherit;
  margin: 0;
}

.burger-card .price .currency {
  font-size: 14px;
  font-family: var(--font-display-2);
  margin-left: 2px;
}

.burger-card .icon-burger {
  margin-bottom: 18px;
  width: 70px;
  height: 70px;
}

@media (max-width: 900px) {
  .burger-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .burger-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ZESTAWY LIST
   ============================================ */
.set-list {
  max-width: 900px;
  margin: 0 auto;
}

.set-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--cream);
  border: 3px solid var(--ink);
  margin-bottom: 14px;
  transition: all 0.2s;
  position: relative;
}

.set-row:hover {
  transform: translateX(8px);
  background: var(--yellow);
  box-shadow: -8px 8px 0 var(--red);
}

.set-row .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--red);
  -webkit-text-stroke: 1px var(--ink);
}

.set-row .info h4 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ink);
}

.set-row .info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

.set-row .price {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 18px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  transform: rotate(-2deg);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.set-row .price .cur {
  font-family: var(--font-display-2);
  font-size: 12px;
  margin-left: 2px;
}

@media (max-width: 600px) {
  .set-row { grid-template-columns: 40px 1fr; gap: 14px; padding: 18px; }
  .set-row .num { font-size: 26px; }
  .set-row .info h4 { font-size: 19px; }
  .set-row .price { grid-column: 1 / -1; justify-self: end; }
}

/* ============================================
   SAUCE GRID
   ============================================ */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.sauce-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}

.sauce-card:hover {
  background: var(--yellow);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--red);
}

.sauce-card.hot { background: var(--red); color: var(--cream); }
.sauce-card.hot:hover { background: var(--ink); color: var(--yellow); }

.sauce-card .ico {
  font-size: 28px;
  margin-bottom: 8px;
}

.sauce-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: inherit;
}

.sauce-card p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 8px;
  min-height: 28px;
}

.sauce-card.hot p { color: rgba(255, 248, 231, 0.9); }

.sauce-card .price {
  font-family: var(--font-display-2);
  font-size: 13px;
  color: var(--red);
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

.sauce-card.hot .price {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================
   FEATURES — czemu warto
   ============================================ */
.features {
  background: var(--ink);
  color: var(--cream);
  padding: 100px var(--gutter);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(80px);
}

.features-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream);
  color: var(--ink);
  padding: 30px 24px;
  border: 3px solid var(--cream);
  position: relative;
  transition: all 0.3s;
}

.feature-card:nth-child(2) { transform: rotate(1deg); background: var(--yellow); }
.feature-card:nth-child(3) { transform: rotate(-1deg); background: var(--red); color: var(--cream); }
.feature-card:nth-child(4) { transform: rotate(0.5deg); }

.feature-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 8px 8px 0 var(--yellow);
}

.feature-card:nth-child(3):hover { box-shadow: 8px 8px 0 var(--yellow); }

.feature-card .ico {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
}

.feature-card:nth-child(3) .ico {
  background: var(--cream);
  color: var(--red);
  border-color: var(--cream);
}

.feature-card .ico svg { width: 26px; height: 26px; }

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.feature-card:nth-child(3) p { color: rgba(255, 248, 231, 0.9); }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOURS — godziny otwarcia
   ============================================ */
.hours {
  padding: 100px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.hours-card {
  background: var(--yellow);
  border: 4px solid var(--ink);
  padding: 50px 40px;
  position: relative;
  box-shadow: 12px 12px 0 var(--ink);
  max-width: 720px;
  margin: 0 auto;
}

.hours-card::before {
  content: 'OPEN';
  position: absolute;
  top: -20px;
  left: 30px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 24px;
  padding: 6px 18px;
  border: 3px solid var(--ink);
  transform: rotate(-4deg);
  letter-spacing: 0.05em;
}

.hours-card::after {
  content: '★';
  position: absolute;
  top: -16px;
  right: 30px;
  background: var(--cream);
  color: var(--red);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 3px solid var(--ink);
  transform: rotate(15deg);
}

.hours-title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.hours-title .red { color: var(--red); }

.hours-subtitle {
  font-family: var(--font-marker);
  font-size: 22px;
  color: var(--red);
  text-align: center;
  margin-bottom: 28px;
  transform: rotate(-1deg);
  display: inline-block;
  width: 100%;
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  border-bottom: 2px dashed var(--ink);
  transition: padding 0.2s;
}

.hours-row:last-child { border-bottom: none; }

.hours-row:hover {
  padding-left: 24px;
}

.hours-row.today {
  background: var(--ink);
  color: var(--yellow);
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  margin: 4px 0;
  position: relative;
  transform: rotate(-1deg);
}

.hours-row.today::before {
  content: 'DZISIAJ →';
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display-2);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border: 2px solid var(--ink);
}

.hours-day {
  font-family: var(--font-display-2);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hours-time {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.hours-row.today .hours-time { color: var(--yellow); }

.hours-time.closed {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.hours-row.today .hours-time.closed { color: var(--red); }

.hours-note {
  text-align: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px dashed var(--ink);
  font-family: var(--font-marker);
  font-size: 17px;
  color: var(--red);
  transform: rotate(-1deg);
}

/* ============================================
   PAGE INTRO
   ============================================ */
.page-intro {
  padding: 80px var(--gutter) 60px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.page-intro-meta {
  font-family: var(--font-display-2);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.page-intro-meta .sep { color: var(--red); }

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 144px);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--ink);
}

.page-intro h1 .red { color: var(--red); }
.page-intro h1 .stroke {
  -webkit-text-stroke: 2px var(--ink);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-intro h1 .marker {
  font-family: var(--font-marker);
  color: var(--red);
  font-size: 0.55em;
  display: inline-block;
  transform: rotate(-4deg);
  vertical-align: top;
  margin-top: 0.2em;
}

.page-intro .subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.5;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--red);
  color: var(--cream);
  padding: 100px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 214, 10, 0.15) 1.5px, transparent 2px);
  background-size: 22px 22px;
  pointer-events: none;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.final-cta-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 18px;
  font-family: var(--font-display-2);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--cream);
}

.final-cta h2 .yellow { color: var(--yellow); }
.final-cta h2 .stroke {
  -webkit-text-stroke: 2px var(--cream);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.final-cta h2 .marker {
  font-family: var(--font-marker);
  color: var(--yellow);
  font-size: 0.55em;
  display: inline-block;
  transform: rotate(-3deg);
  vertical-align: top;
  margin-top: 0.2em;
}

.final-cta p {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 248, 231, 0.95);
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--gutter) 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0,
    var(--yellow) 16px,
    var(--ink) 16px,
    var(--ink) 32px
  );
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-top: 20px;
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer h3 .red { color: var(--red); }

.footer-tagline {
  font-family: var(--font-marker);
  font-size: 22px;
  color: var(--yellow);
  line-height: 1.3;
  margin-bottom: 24px;
  transform: rotate(-2deg);
  display: inline-block;
}

.footer h4 {
  font-family: var(--font-display-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  margin-bottom: 18px;
}

.footer p, .footer a {
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255, 248, 231, 0.7);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.9;
}

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

.footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 2px dashed rgba(255, 248, 231, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display-2);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 248, 231, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom em {
  font-style: normal;
  color: var(--red);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer h3 { font-size: 42px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-intro {
  padding: 60px var(--gutter) 100px;
  max-width: var(--container);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-lead .red { color: var(--red); }
.about-lead .yellow-bg {
  background: var(--yellow);
  padding: 0 8px;
  display: inline-block;
  transform: rotate(-1deg);
  border: 2px solid var(--ink);
}

.about-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.about-text .hl {
  background: var(--yellow);
  padding: 2px 6px;
  font-weight: 800;
}

.about-art {
  position: relative;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--red);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-art svg {
  width: 100%;
  height: 100%;
}

.about-art-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-marker);
  font-size: 28px;
  padding: 14px 22px;
  border: 3px solid var(--ink);
  transform: rotate(8deg);
  z-index: 2;
  box-shadow: 6px 6px 0 var(--red);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-art { max-width: 420px; margin: 0 auto; }
}

/* WARTOŚCI */
.values {
  padding: 100px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  padding: 36px 28px;
  position: relative;
  transition: all 0.2s;
}

.value-card:nth-child(1) { background: var(--red); color: var(--cream); }
.value-card:nth-child(2) { background: var(--yellow); transform: rotate(1deg); }
.value-card:nth-child(3) { background: var(--ink); color: var(--cream); transform: rotate(-1deg); }

.value-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 8px 8px 0 var(--ink);
}

.value-card:nth-child(3):hover { box-shadow: 8px 8px 0 var(--red); }

.value-card .num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.85;
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 18px;
  right: 22px;
}

.value-card:nth-child(1) .num { color: rgba(255, 248, 231, 0.25); }
.value-card:nth-child(3) .num { color: rgba(255, 214, 10, 0.25); }

.value-card h4 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  position: relative;
}

@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-block {
  padding: 60px var(--gutter) 100px;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  background: var(--ink);
  color: var(--cream);
  padding: 50px 40px;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.contact-info .pre {
  font-family: var(--font-display-2);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-info h2 .red { color: var(--red); }
.contact-info h2 .yellow { color: var(--yellow); }

.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 2px dashed rgba(255, 248, 231, 0.15);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .ico {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
}

.contact-item .ico svg { width: 20px; height: 20px; }

.contact-item .label {
  font-family: var(--font-display-2);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.contact-item .val {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--cream);
}

.contact-item .val a { color: inherit; }
.contact-item .val a:hover { color: var(--yellow); }

.contact-item .val.small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.contact-illustration {
  background: var(--yellow);
  border: 4px solid var(--ink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 12px 12px 0 var(--ink);
  background-image: radial-gradient(circle, var(--ink) 1.5px, transparent 2px);
  background-size: 20px 20px;
}

.contact-illustration .inner {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 30px;
  width: 100%;
  text-align: center;
  position: relative;
}

.contact-illustration .inner .stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: var(--cream);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-illustration h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-illustration h3 .red { color: var(--red); }

.contact-illustration p {
  font-family: var(--font-marker);
  font-size: 22px;
  color: var(--red);
  margin-bottom: 22px;
  transform: rotate(-2deg);
  display: inline-block;
}

.contact-illustration .features-list {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

.contact-illustration .features-list .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.contact-illustration .features-list .item::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: 38px; }
}

/* ============================================
   REVEAL animacje
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal-d1 { animation-delay: 0.05s; }
.reveal-d2 { animation-delay: 0.15s; }
.reveal-d3 { animation-delay: 0.28s; }
.reveal-d4 { animation-delay: 0.40s; }
.reveal-d5 { animation-delay: 0.52s; }
.reveal-d6 { animation-delay: 0.64s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
