/* =========================================================
   PIWNICA NA PIĘTRZE — MASTER STYLESHEET
   CLEAN / DEDUPLICATED — v1000
   ========================================================= */

/* ===== 1. ROOT TOKENS ===== */
:root {
  --bg:     #0F0B07;
  --panel:  #15100B;
  --panel2: #1B120A;
  --line:   rgba(255,255,255,.08);

  --gold:   #D6B25E;
  --gold2:  #B88A2A;

  --text:   #F3EFE7;
  --muted:  rgba(243,239,231,.74);

  --cream:  #F6F1E6;
  --ink:    #1B120A;

  --radius:  18px;
  --radius2: 26px;
  --max:     1120px;
  --shadow:  0 18px 60px rgba(0,0,0,.45);

  --ease: cubic-bezier(.2,.85,.2,1);
  --dur:  420ms;

  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --shine: radial-gradient(700px 260px at 20% 0%, rgba(214,178,94,.16), transparent 60%);
}

/* ===== 2. BASE RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: var(--sans); }
html { overflow-x: hidden; }
body {
  background:
    radial-gradient(1200px 800px at 15% 0%,  rgba(214,178,94,.10), transparent 55%),
    radial-gradient(900px  700px at 90% 20%, rgba(214,178,94,.06), transparent 60%),
    var(--bg);
  color: var(--text);
  position: relative;
  /* NO transform / filter / perspective — breaks sticky header */
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 18px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===== 3. HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(15,11,7,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), border-color .35s var(--ease);
  /* Neutralise reveal animation on header */
  opacity: 1 !important;
  transform: none !important;
}
header.is-scrolled {
  background: rgba(15,11,7,.82);
  border-bottom-color: rgba(214,178,94,.14);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: height .35s var(--ease);
}
header.is-scrolled .nav { height: 78px; }

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.brand img {
  height: 70px;
  width: auto;
  display: block;
  background: transparent !important;
  position: relative;
  top: -2px;
  filter: drop-shadow(0 0 4px rgba(214,178,94,.18));
}
@media (max-width: 720px) {
  .brand img { height: 54px; }
}
footer .brand img {
  height: 52px;
  top: 0;
  filter: drop-shadow(0 0 3px rgba(214,178,94,.15));
}
@media (max-width: 720px) {
  footer .brand img { height: 46px; }
}

/* Desktop nav links */
nav {
  display: flex;
  gap: 14px;
  font-size: 13px;
}
nav a {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: .3px;
}
nav a:hover {
  border-color: rgba(214,178,94,.28);
  background: rgba(214,178,94,.06);
}
nav a.active {
  border-color: rgba(214,178,94,.38);
  background: rgba(214,178,94,.06);
}

/* CTA buttons in header */
.cta { display: flex; gap: 10px; align-items: center; }

/* Language switch */
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.langLink {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,239,231,.72);
}
.langLink:hover, .langLink.active { color: rgba(214,178,94,.95); }
.langSep { opacity: .35; }

/* Desktop / mobile lang visibility */
.lang--header { display: none; }
@media (min-width: 921px) {
  .lang--desktop { display: flex !important; }
  .lang--header  { display: none !important; }
}
@media (max-width: 920px) {
  .lang--desktop { display: none !important; }
  .lang--header  { display: flex !important; }
}

/* navRight container */
.navRight { display: flex; align-items: center; gap: 10px; }

/* Mobile layout */
@media (max-width: 920px) {
  header .nav { height: 86px; }
  .brand img   { height: 78px; top: 0; filter: brightness(1.1) drop-shadow(0 0 10px rgba(214,178,94,.35)); }
  nav          { display: none !important; }
  .cta         { display: none !important; }
}

/* ===== 4. HAMBURGER ===== */
.navToggle { display: none !important; }
@media (max-width: 920px) {
  .navToggle { display: inline-flex !important; }
}
.navToggle {
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.navToggle .bar {
  position: absolute;
  left: 50%;
  width: 18px; height: 2px;
  background: rgba(243,239,231,.88);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform .28s ease, opacity .18s ease, width .22s ease;
}
.navToggle .bar:nth-child(1) { top: 16px; }
.navToggle .bar:nth-child(2) { top: 22px; opacity: .95; width: 14px; }
.navToggle .bar:nth-child(3) { top: 28px; }
@media (hover: hover) {
  .navToggle:hover {
    border-color: rgba(214,178,94,.28);
    background: rgba(214,178,94,.08);
    transform: translateY(-1px);
  }
  .navToggle:hover .bar { background: rgba(214,178,94,.95); }
}
.navToggle.is-open .bar:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.navToggle.is-open .bar:nth-child(2) { opacity: 0; width: 0; }
.navToggle.is-open .bar:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

/* ===== 5. MOBILE DRAWER ===== */
.mOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 9998;
}
.mMenu {
  position: fixed;
  top: 70px; left: 10px; right: 10px;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(214,178,94,.22);
  background: rgba(15,11,7,.92);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  z-index: 9999;
  padding: 14px;
}
.mTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.mTitle {
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(214,178,94,.95);
}
.mClose {
  width: 44px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(243,239,231,.88);
  cursor: pointer;
  font-size: 16px;
}
.mLinks { display: grid; gap: 8px; margin: 8px 0 12px; }
.mLinks a {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mLinks a:hover {
  border-color: rgba(214,178,94,.28);
  background: rgba(214,178,94,.06);
}
.mActions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.mLang {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
/* Never show drawer on desktop */
@media (min-width: 921px) {
  #mOverlay, #mobileMenu { display: none !important; }
}

/* ===== 6. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(214,178,94,.38);
  background: rgba(214,178,94,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.btn:active { transform: translateY(0); }
.btn.primary {
  border-color: rgba(214,178,94,.45);
  background: linear-gradient(135deg, rgba(214,178,94,.22), rgba(184,138,42,.10));
  box-shadow: 0 14px 40px rgba(214,178,94,.12);
}
.btn.primary::before {
  content: "";
  position: absolute;
  top: -40%; left: -60%;
  width: 40%; height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}
.btn.primary:hover::before { opacity: .9; animation: sheen 1.1s var(--ease) both; }
@keyframes sheen { from { left: -60%; } to { left: 140%; } }

/* Gold submit button */
.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(140,100,20,.55);
  background: linear-gradient(135deg, #c49830, #a07820);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  width: 100%;
  box-shadow: 0 6px 22px rgba(140,100,20,.28);
}
.btn2:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4a838, #b08828);
  box-shadow: 0 14px 40px rgba(140,100,20,.38);
}
.btn2::before {
  content: "";
  position: absolute;
  top: -40%; left: -60%;
  width: 40%; height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}
.btn2:hover::before { opacity: .9; animation: sheen 1.1s var(--ease) both; }

/* Button spinner */
.btnSpinner {
  display: none;
  width: 14px; height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(27,18,10,.25);
  border-top-color: rgba(27,18,10,.85);
  animation: spin .8s linear infinite;
  margin-left: 10px;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.isLoading .btnSpinner { display: inline-block; }
.isLoading .btnText   { opacity: .88; }

/* ===== 7. REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
/* Both .in (homepage) and .on (menu page) supported */
.reveal.in,
.reveal.on { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ===== 8. MAIN / SECTION BASE ===== */
main    { padding: 26px 0 60px; }
section { padding: 30px 0; }

/* ===== 9. HERO (HOMEPAGE) ===== */
.hero { padding: 44px 0 18px; }
.heroCard {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  margin-top: 12px;
}
/* Two-column grid hero */
.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 920px) {
  .heroGrid { grid-template-columns: 1fr; }
}

.heroCard::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 450px at 70% 0%, rgba(214,178,94,.14), transparent 60%);
  pointer-events: none;
  opacity: .75;
  z-index: 0;
}
.heroLeft, .heroRight { position: relative; z-index: 1; }
.heroLeft { padding: 30px 28px; }
@media (max-width: 600px) {
  .heroLeft { padding: 20px 16px; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(214,178,94,.95);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214,178,94,.12);
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -.03em;
}
@media (max-width: 520px) { h1 { font-size: 34px; } }

.lead {
  margin: 14px 0 18px;
  color: rgba(243,239,231,.82);
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}

/* Hero actions */
.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

/* Star ratings pills */
.stars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  color: rgba(243,239,231,.70);
  font-size: 13px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  white-space: nowrap;
}
.star { color: var(--gold); }

/* Hero right panel (background image) */
.heroRight {
  min-height: 420px;
  border-left: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.heroRight::before {
  content: "";
  position: absolute; inset: -2%;
  background:
    linear-gradient(180deg, rgba(15,11,7,.18), rgba(15,11,7,.52)),
    radial-gradient(900px 560px at 30% 30%, rgba(214,178,94,.16), transparent 64%),
    url("/assets/img/hero-1.jpg") center / cover no-repeat;
  filter: saturate(1.10) contrast(1.06);
  transform: scale(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: -2;
}
.heroRight::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 650px at 65% 28%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.18));
  opacity: .30;
  pointer-events: none;
  z-index: -1;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
@media (max-width: 920px) {
  .heroRight { border-left: none; border-top: 1px solid var(--line); }
}

/* Badge overlay on hero image */
.badge {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(15,11,7,.38);
  backdrop-filter: blur(14px);
  color: rgba(243,239,231,.90);
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 24px 70px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.06);
}
.badge::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 55%);
  pointer-events: none;
}

/* Grain overlay */
.heroCard .grain {
  pointer-events: none;
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .05;
  z-index: 2;
  border-radius: var(--radius2);
}

/* ===== 10. GALLERY ===== */
.gallery { padding: 10px 0 26px; }
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 920px) { .galleryGrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .galleryGrid { grid-template-columns: repeat(2, 1fr); } }

.gItem {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
  transform: translateZ(0);
}
.gItem::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(214,178,94,0);
  pointer-events: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gItem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s var(--ease);
}
@media (hover: hover) {
  .gItem:hover { transform: translateY(-5px); box-shadow: 0 26px 70px rgba(0,0,0,.55); }
  .gItem:hover::after { border-color: rgba(214,178,94,.35); }
  .gItem:hover img { transform: scale(1.07); }
}
.gCap {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(15,11,7,.55), rgba(15,11,7,.75));
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
  color: #f3efe7;
  min-height: 56px;
  display: flex;
  align-items: center;
}

/* ===== 11. LIGHT SECTIONS ===== */
.light {
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(214,178,94,.12), transparent 55%),
    radial-gradient(700px 520px at 90% 30%, rgba(214,178,94,.09), transparent 55%),
    linear-gradient(180deg, rgba(246,241,230,.985), rgba(246,241,230,.945));
  color: var(--ink);
  border-top: 1px solid rgba(214,178,94,.20);
  border-bottom: 1px solid rgba(214,178,94,.20);
  position: relative;
}
.light::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='420' height='420' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  opacity: .10;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.light > .wrap { position: relative; z-index: 1; }

/* Section headings */
.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
}
.head h2 { margin: 0; font-family: var(--serif); font-size: 26px; letter-spacing: -.02em; }
.head p   { margin: 0; color: rgba(27,18,10,.72); font-size: 13px; line-height: 1.6; max-width: 62ch; }

.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #b88a2a, #e0b861);
  margin-bottom: 18px;
  border-radius: 999px;
}

/* 3-col grid */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 920px) { .grid3 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(27,18,10,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
  padding: 16px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
  position: relative;
  transform: translateZ(0);
}
.card::before {
  content: "";
  position: absolute; inset: -1px;
  background: var(--shine);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(214,178,94,0);
  pointer-events: none;
  transition: border-color var(--dur) var(--ease);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(0,0,0,.16);
    border-color: rgba(214,178,94,.18);
  }
  .card:hover::before { opacity: 1; }
  .card:hover::after  { border-color: rgba(214,178,94,.30); }
}
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p   { margin: 0 0 12px; color: rgba(27,18,10,.70); font-size: 13px; line-height: 1.6; }

/* Card helper elements */
.link        { color: rgba(27,18,10,.92); font-weight: 900; }
.link span   { color: var(--gold2); }
.fine        { margin-top: 10px; font-size: 12px; color: rgba(27,18,10,.60); line-height: 1.6; }
.thumb {
  width: 100%; height: 240px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 0 12px;
  border: 1px solid rgba(27,18,10,.10);
}
.banner {
  width: 100%; height: 240px;
  border-radius: 18px;
  object-fit: cover;
  filter: brightness(.88) contrast(1.02);
  border: 1px solid rgba(27,18,10,.10);
  margin-bottom: 14px;
}

/* ===== 12. ABONAMENTY ===== */
.abonamentyBg { position: relative; overflow: hidden; }
.abonamentyBg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(246,241,230,.90), rgba(246,241,230,.97)),
    url("/assets/img/abonamenty.jpg") center / cover no-repeat;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
  opacity: .28;
  pointer-events: none;
}
.abonamentyBg > .wrap { position: relative; z-index: 1; }

/* Abonament cards: clear visual separation on mobile */
@media (max-width: 920px) {
  .abonamentyBg .grid3 { gap: 10px; }
  .abonamentyBg .grid3 .card {
    border-left: 3px solid rgba(214,178,94,.55);
  }
}

/* ===== 13. EVENTY ===== */
#eventy.dark {
  background: #0f0b07;
  color: #f5efe6;
}
#eventy.dark .card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,138,42,.25);
  box-shadow: inset 0 0 40px rgba(255,255,255,.02), 0 0 40px rgba(184,138,42,.15);
}
#eventy.dark h2,
#eventy.dark h3  { color: #fff; }
#eventy.dark p   { color: rgba(255,255,255,.78); }
#eventy.dark .fine { color: rgba(255,255,255,.55); }

/* Event grid — two columns on desktop, one on mobile */
.eventGrid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 680px) {
  .eventGrid {
    grid-template-columns: 1fr;
  }
  .eventGrid > div:first-child img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
  }
}

/* Event trust checklist */
.eventTrust {
  list-style: none;
  padding: 0;
  margin: 14px 0 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: rgba(243,239,231,.86);
  font-weight: 700;
  font-size: 13px;
}
.eventTrust li { margin: 0; }
@media (max-width: 720px) {
  .eventTrust { grid-template-columns: 1fr; }
}

/* ===== 14. FORMS ===== */
label { font-size: 12px; color: rgba(27,18,10,.70); }
.fieldLabel {
  font-size: 13px;
  letter-spacing: .4px;
  color: rgba(27,18,10,.65);
  margin-bottom: 6px;
  display: block;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(27,18,10,.16);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(184,138,42,.55);
  box-shadow: 0 0 0 4px rgba(214,178,94,.22);
}
form { display: grid; gap: 10px; margin-top: 12px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .row2 { grid-template-columns: 1fr; } }
.hint { font-size: 12px; color: rgba(27,18,10,.55); margin-top: 6px; }

/* Dynamic form blocks */
.dyn     { display: none; }
.dyn.on  { display: block; }

/* Form messages */
.formMessage {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.formMessage.show    { display: block; opacity: 1; transform: translateY(0); }
.formMessage.success { border-color: rgba(46,125,50,.22); background: rgba(232,245,233,.85); color: #1b5e20; }
.formMessage.error   { border-color: rgba(198,40,40,.20); background: rgba(255,235,238,.85); color: #b71c1c; }

@keyframes successPulse {
  0%   { box-shadow: 0 0 0 0  rgba(46,125,50,.18); }
  100% { box-shadow: 0 0 0 14px rgba(46,125,50,0); }
}
.formMessage.success.pulse { animation: successPulse 900ms ease-out 1; }

/* ===== 15. KONTAKT ===== */
#kontakt .h3icon { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
#kontakt .ico {
  width: 18px; height: 18px; flex: 0 0 18px;
  color: rgba(184,138,42,.92);
  filter: drop-shadow(0 4px 10px rgba(184,138,42,.18));
}
#kontakt .subtleRule {
  height: 1px;
  background: linear-gradient(90deg, rgba(184,138,42,.22), rgba(184,138,42,.06));
  margin: 12px 0;
}

/* Open/Closed badge */
.openBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(214,178,94,.14);
  color: var(--gold2);
  border: 1px solid rgba(214,178,94,.35);
}
.openBadge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); }
.openBadge.closed { background: rgba(120,120,120,.12); color: #777; border-color: rgba(120,120,120,.25); }
.openBadge.closed .dot { background: #777; }

/* Delivery links in kontakt */
#kontakt .deliveryLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
#kontakt .deliveryLinks .dlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: rgba(184,138,42,.95);
  text-decoration: none !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
@media (hover: hover) {
  #kontakt .deliveryLinks .dlink:hover { opacity: .85; }
}
#kontakt a.link { text-decoration: none !important; border-bottom: 0 !important; }

/* Delivery links in menu section (homepage cards) */
.deliveryLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  margin-top: 8px;
}
.menuDeliveryLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.menuDeliveryLinks a {
  position: relative;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--gold2);
  padding: 6px 0;
  text-decoration: none;
  white-space: nowrap;
}
.menuDeliveryLinks a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width .28s var(--ease);
}
@media (hover: hover) {
  .menuDeliveryLinks a:hover { color: var(--gold); }
  .menuDeliveryLinks a:hover::after { width: 100%; }
}

/* ===== 16. FOOTER ===== */
footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: rgba(243,239,231,.70);
  /* NO height restrictions */
}
footer a { color: rgba(243,239,231,.72); }
footer a:hover { color: rgba(214,178,94,.95); }

footer .legalLinks {
  margin-top: 6px;
  font-size: 12px;
  opacity: .55;
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 18px;
}
footer .legalLinks a {
  position: relative;
  display: inline-block;
  font-weight: 600;
  white-space: nowrap;
}
footer .legalLinks a + a { padding-left: 14px; }
footer .legalLinks a + a::before {
  content: "·";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  opacity: .4;
}
footer .legalLinks span { display: none !important; }

/* ===== 17. MENU PAGE — HERO SPLIT ===== */
.heroMenu .heroInner {
  position: relative;
  padding: 26px;
  background: var(--shine);
}
.heroSplit {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 920px) {
  .heroSplit { grid-template-columns: 1fr; }
  .heroRightVisual { display: none; }
}
.heroMenu .heroMeta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: rgba(243,239,231,.72);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.heroMenu h1     { margin: 14px 0 10px; }
.heroMenu .lead  { margin-top: 0; max-width: 72ch; }
.heroMenu .heroActions { margin-top: 18px; gap: 12px; }
.heroMenu .heroActions .btn { padding: 12px 16px; min-height: 46px; }

/* Hero notice bar (menu page) */
.heroMenu .heroNotice {
  position: relative;
  margin-top: 18px;
  padding: 14px 18px 14px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(214,178,94,.02));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  color: rgba(243,239,231,.80);
  line-height: 1.6;
}
.heroMenu .heroNotice::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  box-shadow: 0 0 18px rgba(214,178,94,.35);
}
.heroMenu .heroNotice b { color: var(--gold); font-weight: 900; }

/* Right visual on menu hero */
.heroRightVisual {
  min-height: 260px;
  border-radius: 20px;
  border: 1px solid rgba(214,178,94,.18);
  overflow: hidden;
  position: relative;
  max-height: 520px;
}
.heroRightVisual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.95) contrast(1.08) saturate(1.05);
}
.heroRightVisual::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(214,178,94,.15), transparent 60%);
  pointer-events: none;
}

/* ===== 18. MENU PAGE — PROMO / BUFET ===== */
.gallery { margin-top: 32px; }
.promo {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  overflow: hidden;
}
.promoInner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(214,178,94,.05), rgba(255,255,255,.00));
}
@media (max-width: 880px) {
  .promoInner { grid-template-columns: 1fr; }
}
.promoImg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  min-height: 220px;
}
.promoImg img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) { .promoImg img { height: 260px; } }
.promoImg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,11,7,.70), rgba(15,11,7,.12));
}
.promoTag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(243,239,231,.72);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
}
.promo h2 {
  margin: 10px 0 6px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}
.promo h2::after {
  content: "";
  display: block;
  width: 70px; height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.promo p {
  margin: 0;
  color: rgba(243,239,231,.78);
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
}
.promoActions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* Bufet details box */
.bufetStrong {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214,178,94,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  box-shadow: 0 18px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}
.bufetMeta {
  font-size: 12px; font-weight: 800;
  letter-spacing: .06em;
  color: rgba(214,178,94,.95);
  margin-bottom: 10px;
}
.bufetMeta .sep { margin: 0 8px; opacity: .4; }
.bufetPriceLine {
  font-size: 18px; font-weight: 900;
  color: rgba(243,239,231,.95);
  margin-bottom: 10px;
  line-height: 1.25;
}
.bufetPriceLine strong { color: rgba(214,178,94,1); font-size: 20px; }
.bufetDesc { font-size: 14px; line-height: 1.6; color: rgba(243,239,231,.82); margin-bottom: 8px; }
.bufetFine { font-size: 11px; opacity: .65; line-height: 1.6; }

/* ===== 19. MENU PAGE — ITEMS LIST ===== */
.section {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.secHead {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(214,178,94,.06), rgba(255,255,255,.00));
}
.secHead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .01em;
}
.items { padding: 10px 12px 14px; }
.item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.item:hover {
  border-color: rgba(214,178,94,.22);
  background: rgba(214,178,94,.05);
}
/* Prevent price overflow on narrow screens */
.left { min-width: 0; flex: 1 1 0; }
.name { font-weight: 900; font-size: 14px; line-height: 1.35; word-break: break-word; }
.desc { color: rgba(243,239,231,.66); font-size: 12px; line-height: 1.5; margin-top: 4px; }
.meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}
.price { font-weight: 900; color: rgba(214,178,94,.96); letter-spacing: .02em; }
.no {
  font-size: 11px;
  color: rgba(243,239,231,.45);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 4px 8px;
  border-radius: 999px;
}
.hrNote {
  margin: 14px 12px 16px;
  color: rgba(243,239,231,.62);
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 16px;
}

/* ===== 20. MISC HELPERS ===== */
.note {
  margin-top: 14px;
  color: rgba(243,239,231,.62);
  font-size: 12px;
  line-height: 1.6;
}
.sep { margin: 0 8px; opacity: .35; }

/* Scroll progress bar (injected by JS) */
#scrollProgress {
  position: fixed;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, rgba(214,178,94,.9), rgba(184,138,42,.9));
  z-index: 99999;
  pointer-events: none;
}

/* Scroll-up button — never overlap footer */
#scrollUp,
.scrollUp,
[id*="scrollUp"],
[class*="scrollUp"] {
  bottom: 72px !important;
  right: 16px !important;
  z-index: 900 !important;
}

/* ===== ABONAMENTY — 2 kolumny zamiast 3 ===== */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 680px) {
  .grid2 { grid-template-columns: 1fr; }
}

.abonTag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(27,18,10,.65);
  background: rgba(184,138,42,.12);
  border: 1px solid rgba(184,138,42,.25);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.abonTagGold {
  color: #7a5a10;
  background: rgba(184,138,42,.18);
  border-color: rgba(184,138,42,.38);
}
.abonPrice {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.abonSub {
  font-size: 12px;
  color: rgba(27,18,10,.55);
  margin: 0 0 12px;
}
.abonNote {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(27,18,10,.60);
}

/* ===== OBIAD CARD ===== */
.obiadCard {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(184,138,42,.18);
  border-radius: var(--radius2);
  padding: 28px 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.07);
}
@media (max-width: 680px) {
  .obiadCard {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
  .obiadRight { border-top: 1px solid rgba(184,138,42,.15); padding-top: 18px; }
}

.obiadPrice {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: rgba(27,18,10,.80);
  line-height: 1.4;
  padding: 18px 16px 14px;
  border-radius: 16px;
  border-left: 4px solid rgba(184,138,42,.60);
  border-top: 1px solid rgba(184,138,42,.18);
  border-right: 1px solid rgba(184,138,42,.18);
  border-bottom: 1px solid rgba(184,138,42,.18);
  background: linear-gradient(160deg, rgba(184,138,42,.06), rgba(246,241,230,.60));
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: .01em;
}

.obiadTrust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(27,18,10,.78);
}
.obiadTrust li { margin: 0; }

/* ===== PRZYCISKI W JASNYCH SEKCJACH (.light) ===== */
.light .btn {
  border-color: rgba(140,100,20,.35);
  background: rgba(255,255,255,.80);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.light .btn:hover {
  background: rgba(255,255,255,.96);
  border-color: rgba(140,100,20,.55);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.light .btn.primary {
  border-color: rgba(140,100,20,.50);
  background: linear-gradient(135deg, rgba(184,138,42,.18), rgba(184,138,42,.08));
  color: rgba(27,18,10,.90);
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(140,100,20,.12);
}
.light .btn.primary:hover {
  background: linear-gradient(135deg, rgba(184,138,42,.28), rgba(184,138,42,.14));
  border-color: rgba(140,100,20,.70);
  box-shadow: 0 8px 24px rgba(140,100,20,.20);
  color: rgba(27,18,10,.95);
}

/* Obiad section — równa szerokość przycisków na mobile */
#obiad .obiadLeft > div[style] {
  align-items: stretch;
}
@media (max-width: 520px) {
  #obiad .obiadLeft > div {
    flex-direction: column;
  }
  #obiad .obiadLeft .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ===== OBIAD ACTIONS ===== */
.obiadActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 520px) {
  .obiadActions {
    flex-direction: column;
    align-items: stretch;
  }
  .obiadActions .btn {
    text-align: center;
    justify-content: center;
  }
}

/* Obiad price — info box, nie button */
.obiadPriceLabel {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: rgba(27,18,10,.85);
  line-height: 1.3;
  margin-bottom: 5px;
}
.obiadPriceSub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(27,18,10,.50);
  letter-spacing: .04em;
}

/* Eventy CTA — button na ciemnym tle */
#eventy .event-cta .btn.primary {
  border-color: rgba(214,178,94,.55);
  background: linear-gradient(135deg, rgba(214,178,94,.26), rgba(184,138,42,.12));
  color: var(--text);
  box-shadow: 0 6px 22px rgba(214,178,94,.15);
  padding: 13px 20px;
  font-size: 14px;
}
#eventy .event-cta .btn.primary:hover {
  background: linear-gradient(135deg, rgba(214,178,94,.38), rgba(184,138,42,.20));
  border-color: rgba(214,178,94,.75);
  box-shadow: 0 10px 32px rgba(214,178,94,.22);
}
/* 4-col grid (Menu section) */
.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 860px) {
  .grid4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .grid4 { grid-template-columns: 1fr; }
}
.bufetPillRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}
.bufetPill {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  color: #7a5a10;
  background: rgba(184,138,42,.14);
  border: 1px solid rgba(184,138,42,.32);
  border-radius: 999px;
  padding: 3px 10px;
}
.heroMenu .heroInner {
  background: none;
}
.heroMenu .heroInner {
  background: radial-gradient(800px 300px at 30% 50%, rgba(214,178,94,.08), transparent 70%);
}