/* ==============================
   BLISKO BISTRO — Design System
   ============================== */
:root {
  --black:   #0C0C0C;
  --orange:  #E94831;
  --gold:    #F5A029;
  --beige:   #F4E4C8;
  --beige-dark: #E8D4AC;
  --white:   #FAFAF8;
  --muted:   rgba(244,228,200,0.5);

  --font-display: 'Clash Display', sans-serif;
  --font-body:    'Archivo', sans-serif;

  --container: 1200px;
  --radius: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==============================
   RESET
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--beige);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }

/* ==============================
   TYPOGRAPHY
   ============================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-label.dark { color: var(--black); opacity: 0.6; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  color: var(--beige);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.section-title.dark { color: var(--black); }

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border: 2px solid rgba(244,228,200,0.3);
  color: var(--beige);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--beige);
  background: rgba(244,228,200,0.05);
}

.btn-reserve {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-reserve:hover { background: var(--gold); }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,228,200,0.06);
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(244,228,200,0.6);
}
.nav-links a:hover { color: var(--beige); }

/* Mobile menu */
.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--beige);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 24px 40px;
  border-bottom: 1px solid rgba(244,228,200,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(244,228,200,0.06);
  color: rgba(244,228,200,0.6);
}
.mobile-menu a:hover { color: var(--beige); }
.mobile-reserve {
  margin-top: 16px;
  text-align: center;
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px !important;
  border: none !important;
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0);
  animation: heroZoom 15s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.7) 0%,
    rgba(12,12,12,0.5) 40%,
    rgba(12,12,12,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-pre {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-logo {
  margin: 0 auto 32px;
}
.hero-logo img {
  height: 180px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(233,72,49,0.3));
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(244,228,200,0.7);
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-tagline br { display: block; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(244,228,200,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--orange);
  box-shadow: 0 0 0 rgba(233, 72, 49, 0);
  animation: scrollPulseGlow 3s ease-in-out infinite;
}

@keyframes scrollPulseGlow {
  0%, 100% { 
    opacity: 0.3; 
    box-shadow: 0 0 0 rgba(233, 72, 49, 0);
    transform: scaleY(0.9);
  }
  50% { 
    opacity: 1; 
    box-shadow: 0 0 15px rgba(233, 72, 49, 0.8);
    transform: scaleY(1.1);
  }
}

/* ==============================
   ABOUT
   ============================== */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: var(--transition);
}
.about-photo-wrap:hover img { filter: grayscale(0) contrast(1); }

.about-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,228,200,0.1);
}
.caption-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}
.caption-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.about-text-col p {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,228,200,0.1);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ==============================
   MARQUEE SEPARATOR
   ============================== */
.marquee-separator {
  background: var(--orange);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 20s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  align-items: center;
}
.marquee-track .dot {
  color: rgba(255,255,255,0.4);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==============================
   MENU
   ============================== */
.menu {
  background: #111010;
}

.menu-header {
  margin-bottom: 72px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 80px;
}
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(233,72,49,0.2);
}

.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,228,200,0.07);
}
.menu-item:first-child { padding-top: 0; }

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}
.menu-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--beige);
}
.menu-price {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-desc {
  font-size: 0.82rem;
  color: rgba(244,228,200,0.4);
  line-height: 1.5;
  margin: 0;
}

/* ==============================
   KLIMAT / GALLERY
   ============================== */
.klimat {
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}

.klimat-header {
  margin-bottom: 80px;
}

.klimat-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px 0;
}
.klimat-row:last-child { margin-bottom: 0; }

.klimat-track {
  display: flex;
  gap: 6px;
  width: max-content;
  will-change: transform;
}

.klimat-track--left {
  animation: klimatLeft 30s linear infinite;
}
.klimat-track--right {
  animation: klimatRight 30s linear infinite;
}

@keyframes klimatLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes klimatRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.klimat-row:hover .klimat-track { animation-play-state: paused; }

.klimat-item {
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.klimat-item img {
  width: 420px;
  height: 280px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: all 0.5s ease;
  display: block;
}

.klimat-item:hover img {
  filter: grayscale(0.2) contrast(1);
  transform: scale(1.04);
}

/* ==============================
   MENU NA WYNOS
   ============================== */
.wynos {
  background: #111010;
  border-top: 1px solid rgba(244,228,200,0.06);
}

.wynos-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.wynos-sub {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: -16px;
}

.wynos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.wynos-card {
  background: rgba(244,228,200,0.03);
  border: 1px solid rgba(244,228,200,0.08);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.wynos-card:hover {
  border-color: rgba(233,72,49,0.3);
  background: rgba(233,72,49,0.04);
}

.wynos-icon {
  font-size: 2rem;
  line-height: 1;
}

.wynos-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--beige);
}

.wynos-card p {
  font-size: 0.9rem;
  flex: 1;
}

.wynos-note {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(244,228,200,0.08);
}
.wynos-note p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(244,228,200,0.4);
}
.wynos-note strong { color: var(--gold); }

/* ==============================
   IMPREZY OKOLICZNOŚCIOWE
   ============================== */
.imprezy {
  background: var(--black);
  padding: 0;
}

.imprezy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.imprezy-photo {
  position: relative;
  overflow: hidden;
}
.imprezy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: all 0.6s ease;
}
.imprezy-photo:hover img { filter: grayscale(0) contrast(1); }
.imprezy-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black));
}

.imprezy-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imprezy-features {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(244,228,200,0.1);
  border-bottom: 1px solid rgba(244,228,200,0.1);
}
.feat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.feat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.imprezy-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================
   REZERWACJA
   ============================== */
.rezerwacja {
  background: #0e0d0d;
  border-top: 1px solid rgba(244,228,200,0.06);
}

.rez-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.rez-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  color: var(--beige);
  margin-bottom: 24px;
}

.booking-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(244,228,200,0.05);
  border: 1px solid rgba(244,228,200,0.12);
  color: var(--beige);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form input::placeholder { color: rgba(244,228,200,0.3); }
.booking-form select { color: rgba(244,228,200,0.5); cursor: pointer; }
.booking-form select option { background: var(--black); color: var(--beige); }
.booking-form input:focus,
.booking-form select:focus { border-color: var(--orange); }

/* ==============================
   DOJAZD
   ============================== */
.dojazd {
  background: #111010;
  border-top: 1px solid rgba(244,228,200,0.06);
}

.dojazd-header {
  margin-bottom: 56px;
}

.dojazd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dojazd-slider {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.dojazd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.dojazd-slide.active { opacity: 1; }

.dojazd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

.dojazd-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dojazd-address h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dojazd-address p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--beige);
}

.dojazd-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 1px solid rgba(244,228,200,0.08);
}

@media (max-width: 1024px) {
  .dojazd-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .dojazd-slider { height: 220px; }
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #070707;
  border-top: 1px solid rgba(244,228,200,0.06);
}

.footer-top {
  padding: 80px 0;
  border-bottom: 1px solid rgba(244,228,200,0.06);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-info h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-info p { font-size: 0.9rem; line-height: 1.9; }
.footer-info a { color: var(--muted); }
.footer-info a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(244,228,200,0.2);
}
.footer-bottom-inner a { color: var(--orange); }
.footer-bottom-inner a:hover { color: var(--gold); }

/* ==============================
   RESPONSIVE — TABLET (1024px)
   ============================== */
@media (max-width: 1024px) {
  .nav-links, .btn-reserve { display: none; }
  .mobile-btn { display: flex; }
  .nav-inner { padding: 18px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .about-text-col p { max-width: 100%; }

  .menu-grid { gap: 48px 40px; }

  .imprezy-content { padding: 80px 48px; }

  .rez-inner { gap: 48px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==============================
   RESPONSIVE — MOBILE (768px)
   ============================== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }

  .hero-logo img { height: 100px; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }

  .about-grid { padding: 0 20px; gap: 32px; }
  .about-stats { flex-wrap: wrap; gap: 20px; }

  .menu-grid { grid-template-columns: 1fr; gap: 36px; }

  .klimat { padding: 64px 0; }
  .klimat-item img { width: 280px; height: 200px; }

  .wynos-grid { grid-template-columns: 1fr; }
  .wynos-card .btn-primary,
  .wynos-card .btn-ghost { width: 100%; justify-content: center; }

  .imprezy-inner { grid-template-columns: 1fr; }
  .imprezy-photo { height: 280px; }
  .imprezy-photo-overlay { background: linear-gradient(to bottom, transparent 50%, var(--black)); }
  .imprezy-content { padding: 48px 20px; }
  .imprezy-features { gap: 20px; flex-wrap: wrap; }
  .imprezy-actions { flex-direction: column; }
  .imprezy-actions .btn-primary,
  .imprezy-actions .btn-ghost { width: 100%; justify-content: center; }

  .rez-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .section-title { font-size: 2.8rem; }
  .rez-title { font-size: 3rem; }
}

/* ==============================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================== */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-logo img { height: 80px; }
  .section-title { font-size: 2.4rem; }
  .rez-title { font-size: 2.5rem; }
  .about-stats { flex-direction: column; gap: 16px; }
  .marquee-track { font-size: 0.9rem; gap: 20px; }
  .klimat-item img { width: 220px; height: 160px; }
  .imprezy-photo { height: 220px; }
  .wynos-card { padding: 28px 20px; }
}

/* ==============================
   REVIEWS (OPINIE)
   ============================== */
.reviews {
  background: var(--orange);
  color: var(--black);
}

.reviews-header {
  margin-bottom: 80px;
  text-align: left;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.review-card {
  background: rgba(12, 12, 12, 0.05);
  padding: 40px;
  border: 1px solid rgba(12, 12, 12, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(12, 12, 12, 0.08);
  transform: translateY(-5px);
}

.review-stars {
  color: var(--black);
  letter-spacing: 4px;
  font-size: 0.8rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  flex-grow: 1;
}

.review-author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==============================
   CURSOR EFFECT (Inverted Circle)
   ============================== */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  transform: translate(-50%, -50%);
  display: block;
}

#custom-cursor.hover {
  width: 64px;
  height: 64px;
  background: white;
}

/* Ukryj domyślny kursor na desktopie dla lepszego efektu */
@media (min-width: 1024px) {
  body { cursor: none; }
  a, button, .klimat-item { cursor: none; }
}

/* ==============================
   PAPER MENU STYLE (ŚNIADANIA, LUNCH, IMPREZY)
   ============================== */
.menu-paper {
  background-color: var(--beige);
  color: var(--orange);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.menu-paper .container {
  max-width: 900px;
  position: relative;
}

.menu-paper-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

/* Items */
.menu-paper-items {
  display: flex;
  flex-direction: column;
}

.menu-paper-item {
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid var(--orange);
}

.menu-paper-item:first-child {
  border-top: 1px solid var(--orange);
}

.menu-paper-section {
  position: relative;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
}

.item-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.item-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--orange);
  opacity: 0.9;
  line-height: 1.5;
}

/* Icons */
.leaf-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 8px;
  fill: var(--orange);
}

/* LUNCH SPECIFIC */
.lunch-section {
  padding-bottom: 60px;
}

.lunch-box {
  background: var(--orange);
  color: var(--beige);
  padding: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.lunch-box-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lunch-box-text p {
  color: var(--beige);
  opacity: 0.9;
  font-size: 0.9rem;
}

.lunch-box-q {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -5px;
}

/* IMPREZY PAPER */
.imprezy-paper-header {
  margin-top: 80px;
  border-top: 1px solid var(--orange);
  padding-top: 40px;
}

.hashtags {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 16px 0;
  letter-spacing: 1px;
}

.fancy-border-box {
  border: 2px solid var(--orange);
  padding: 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.2rem;
  margin-top: 32px;
}

/* Footer Mascot */
.menu-footer-checkered {
  background: var(--orange);
  height: 100px;
  margin-top: 120px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  position: relative;
}

.footer-mascot-wrap {
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 120px;
  width: auto;
  z-index: 5;
}

.footer-mascot-wrap img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.checkered-pattern {
  flex: 1;
  height: 50px;
  margin: 0 100px 0 120px;
  background-image: 
    linear-gradient(45deg, var(--white) 25%, transparent 25%),
    linear-gradient(-45deg, var(--white) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--white) 75%),
    linear-gradient(-45deg, transparent 75%, var(--white) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
  opacity: 0.9;
}

.paper-footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--beige);
  font-weight: 900;
  letter-spacing: -0.05em;
}

/* Responsive Menu Paper */
@media (max-width: 768px) {
  .menu-paper { padding: 80px 0; }
  .menu-paper-title { font-size: 4rem; }
  .item-name, .item-price { font-size: 1.1rem; }
  .lunch-box { flex-direction: column; text-align: center; padding: 30px 20px; }
  .lunch-box-q { font-size: 5rem; letter-spacing: -2px; }
  .sticker-wrap { display: none; } /* Hide stickers on mobile to avoid overlap */
  .menu-footer-checkered { flex-direction: column; gap: 20px; height: auto; padding: 40px; }
  .footer-mascot-wrap { position: static; height: 100px; margin-bottom: 20px; }
  .checkered-pattern { margin: 0; width: 100%; height: 30px; }
}

/* QR SECTION */
.menu-qr-cta {
  display: flex;
  background: var(--orange);
  color: var(--beige);
  padding: 48px;
  margin-top: 80px;
  align-items: center;
  gap: 48px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(233, 72, 49, 0.15);
}

.menu-qr-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.qr-image-wrap {
  width: 140px;
  height: 140px;
  background: var(--white);
  padding: 10px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.menu-qr-cta:hover .qr-image-wrap {
  transform: rotate(0deg) scale(1.05);
}

.qr-image-wrap img:not(.qr-logo) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.qr-text {
  flex: 1;
}

.qr-text h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.qr-text p {
  color: var(--white);
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

@media (max-width: 600px) {
  .menu-qr-cta { flex-direction: column; text-align: center; }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-title,
.about-photo-wrap, 
.about-text-col, 
.rez-text, 
.rez-form, 
.footer-info, 
.review-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
