

:root {
  --orange: #ED6A3B;
  --light: #EAEAEA;
  --dark: #1D1D1B;
  --max-w: 1440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'itc-avant-garde-gothic-pro', 'ITC Avant Garde Gothic Pro', Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: min(100% - clamp(40px, 4vw, 80px), clamp(1100px, 91vw, 1800px));
  margin: 0 auto;
  box-sizing: border-box;
}

.section { padding: clamp(60px, 4vw, 110px) 0; position: relative; overflow: hidden; }
.section-koktajle { padding: clamp(60px, 7vw, 160px) 0; }
.section-light { background: var(--light); color: var(--dark); }
.section-orange { background: var(--orange); color: var(--light); }
.section-tight-top { padding-top: 0; }

.scallop {
  position: absolute;
  left: 0; right: 0;
  height: 9px;
  background: var(--light);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: auto 186px;
  mask-size: auto 186px;
  pointer-events: none;
  z-index: 1;
}
.scallop-bottom {
  bottom: 0;
  -webkit-mask-image: url('../img/decor/falbanka-bottom.svg');
  mask-image: url('../img/decor/falbanka-bottom.svg');
  -webkit-mask-position: center top;
  mask-position: center top;
}
.scallop-top {
  top: 0;
  -webkit-mask-image: url('../img/decor/falbanka-top.svg');
  mask-image: url('../img/decor/falbanka-top.svg');
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}
.scallop-hero {
  display: none;
  bottom: 0;
  background: var(--orange);
  -webkit-mask-image: url('../img/decor/falbanka-bottom.svg');
  mask-image: url('../img/decor/falbanka-bottom.svg');
  -webkit-mask-position: center top;
  mask-position: center top;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  transition: width .6s cubic-bezier(.2,.7,.2,1), background-color .55s cubic-bezier(.2,.7,.2,1), top .6s cubic-bezier(.2,.7,.2,1), border-radius .55s ease, box-shadow .55s ease;
  background: transparent;
}
.topbar.scrolled {
  width: 90%;
  top: 12px;
  background: var(--orange);
  border: 0;
  border-radius: 40px;
  box-shadow: none;
}
.topbar.scrolled .header-inner { padding: 12px 28px; gap: 40px; }
.topbar.scrolled .logo img { height: clamp(36px, 3vw, 56px); }
.topbar.scrolled .nav {
  font-size: clamp(15px, 1.2vw, 18px);
  padding-top: 8px;
}

.site-header {
  position: relative;
  background-color: #000;
  color: var(--light);
  height: clamp(640px, 100vh, 1100px);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
.hero-media { display: none; }
.hero-stack { display: contents; }

@media (min-width: 901px) {
  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover;
    object-position: center center;
    transform: translateY(-100px);
    display: block;
  }
  .hero-bottle {
    position: absolute;
    right: clamp(180px, 22vw, 460px);
    bottom: 0;
    height: calc(98% - 160px);
    display: block;
    pointer-events: none;
  }
  .hero-bottle img {
    height: 100%;
    width: auto;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    height: auto;
    min-height: 0;
    background: #000;
    overflow: hidden;
    display: block;
  }
  .site-header::before { display: none; }
  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-bg img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: center;
    display: block;
  }
  
  .hero-bottle { display: none; }
  
  .hero-stack {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5%;
    z-index: 2;
  }
  .hero {
    position: relative;
    z-index: 2;
    background: none;
    padding: 0 24px;
    align-items: center;
    text-align: center;
  }
  .hero-title,
  .hero-subtitle { text-align: center; }
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  --edge: var(--hero-edge, 0%);
  --fade: 140px;
  background:
    linear-gradient(to right,
      #000 0%,
      #000 var(--edge),
      rgba(0, 0, 0, 0.85) calc(var(--edge) + var(--fade) * 0.25),
      rgba(0, 0, 0, 0.4) calc(var(--edge) + var(--fade) * 0.6),
      rgba(0, 0, 0, 0) calc(var(--edge) + var(--fade)),
      rgba(0, 0, 0, 0) calc(100% - var(--edge) - var(--fade)),
      rgba(0, 0, 0, 0.4) calc(100% - var(--edge) - var(--fade) * 0.6),
      rgba(0, 0, 0, 0.85) calc(100% - var(--edge) - var(--fade) * 0.25),
      #000 calc(100% - var(--edge)),
      #000 100%);
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  gap: 60px;
  transition: padding .55s cubic-bezier(.2,.7,.2,1), gap .55s cubic-bezier(.2,.7,.2,1);
}
.logo { flex: 0 0 auto; }
.logo img {
  height: clamp(60px, 5.5vw, 110px);
  width: auto;
  filter: brightness(0) invert(1);
  transition: height .55s cubic-bezier(.2,.7,.2,1);
}
.nav {
  flex: 1;
  display: flex;
  justify-content: space-around;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 24px);
  transition: font-size .55s cubic-bezier(.2,.7,.2,1), padding-top .55s cubic-bezier(.2,.7,.2,1);
}
.nav a {
  color: var(--light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
  transform-origin: center;
}
.topbar.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.topbar.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(42px, 12vw, 110px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-line { display: block; }
.hero-line-orange {
  color: rgba(0, 0, 0, 0.0);
  -webkit-text-stroke: 2px var(--orange);
  paint-order: stroke fill;
}
.hero-line-light  { color: var(--light); }
.hero-subtitle {
  margin: 20px 0 0;
  font-size: clamp(22px, 2.6vw, 46px);
  font-weight: 500;
  color: var(--light);
}

.section-title {
  margin: 0 0 clamp(40px, 4vw, 80px);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 60px);
  line-height: 1.1;
  text-transform: uppercase;
  color: inherit;
}

html.js .reveal-marquee { opacity: 0; }
html.js .reveal-cards > .card { opacity: 0; transform: translateX(-120px); }
html.js .reveal-fade-group { opacity: 0; transform: translateY(24px); }
html.js .reveal-fajfy-title { opacity: 0; }
html.js .reveal-fajfy-items > * { opacity: 0; transform: translateY(16px); }
html.js .timeline-wrap .timeline-line-fill { transform: scaleX(0); transform-origin: left center; }
html.js .reveal-timeline .timeline-dot,
html.js .reveal-timeline .timeline-year,
html.js .reveal-timeline .timeline-desc,
html.js .reveal-timeline .timeline-photo { opacity: 0; transform: translateY(18px); }
@media (max-width: 1100px) {
  html.js .timeline-wrap .timeline-line-fill { transform: none; }
  html.js .reveal-timeline .timeline-dot,
  html.js .reveal-timeline .timeline-year,
  html.js .reveal-timeline .timeline-desc,
  html.js .reveal-timeline .timeline-photo { opacity: 1; transform: none; }
}
html.js .reveal-slide-x { opacity: 0; transform: translateX(-100px); }

.marquee {
  width: 100%;
  overflow: hidden;
  margin: 0 0 60px;
  padding: 0;
  white-space: nowrap;
  pointer-events: none;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  padding-left: 30px;
  animation: marquee-scroll 80s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 82px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.marquee-solid {
  color: var(--light);
}
.marquee-outline {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--light);
  paint-order: stroke fill;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mobile-heading { display: none; }

.cards-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 6vw, 100px); }

.card { display: flex; flex-direction: column; gap: 16px; }
.card-photo {
  overflow: hidden;
  aspect-ratio: 430 / 560;
  background: rgba(0,0,0,.1);
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-photo-rounded { border-radius: 20px; }

.card-title {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.card-event {
  position: relative;
}
.card-event img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.card-event__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 34px);
  letter-spacing: 0.01em;
  color: var(--dark);
  text-align: center;
}

.btn,
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(13px, 1.2vw, 20px) clamp(28px, 2.8vw, 50px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 22px);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  letter-spacing: 0.02em;
}
.btn-light { background: var(--light); color: var(--orange); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.15); }

.section-cta { display: flex; justify-content: center; margin: 16px 0 80px; }
.section-cta-tight { margin: 24px 0 40px; }
.warsztaty-cta { margin-top: 32px; display: flex; }

.modal {
  border: 0;
  padding: 0;
  max-width: 520px;
  width: calc(100% - 40px);
  max-height: calc(100dvh - 32px);
  background: var(--orange);
  color: var(--light);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,.61,.36,1);
}
.modal[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  display: flex;
  flex-direction: column;
}
.modal.is-closing { opacity: 0; transform: translateY(12px) scale(.97); }
@media (prefers-reduced-motion: reduce) {
  .modal, .modal.is-closing { transition: none; transform: none; }
}
.modal::backdrop {
  background: rgba(29,29,27,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .28s ease, backdrop-filter .28s ease;
}
.modal[open]::backdrop {
  background: rgba(29,29,27,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal[open].is-closing::backdrop {
  background: rgba(29,29,27,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  color: var(--light);
  border: 0;
  font-size: 30px;
  line-height: 1;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  outline: none;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
.modal-close:focus { outline: none; }
.modal-close:focus-visible { outline: 2px solid var(--light); outline-offset: 2px; }
.modal-close:hover { background: rgba(255,255,255,.16); transform: scale(1.05); }
.modal-body {
  padding: 44px 36px 36px;
  overflow-y: auto;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal-title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}
.modal-desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  opacity: .95;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-field {
  display: block;
  border: 1.5px solid var(--light);
  border-radius: 12px;
  padding: 10px 16px;
}
.modal-field span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 2px;
  opacity: .85;
}
.modal-field input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--light);
  font-size: 16px;
  font-family: inherit;
  padding: 0;
}
.modal-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 6px;
  cursor: pointer;
}
.modal-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 2px 0 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--light);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background-color .15s ease;
}
.modal-consent input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transform-origin: center;
  transition: transform .12s ease-in-out;
  background-color: var(--orange);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.modal-consent input[type="checkbox"]:checked {
  background-color: var(--light);
}
.modal-consent input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.modal-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--light);
  outline-offset: 2px;
}
.modal-info {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  opacity: .8;
  font-weight: 400;
}
.modal-readmore {
  align-self: flex-start;
  margin: -6px 0 0 30px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--light);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.modal-readmore::after { content: " \2192"; }
.modal-readmore:hover { opacity: .85; }
.modal--readmore { max-width: 640px; }
.modal-title--sm { font-size: clamp(20px, 2.2vw, 28px); }
.modal-legal { font-size: 13px; line-height: 1.6; text-align: left; margin: 0 0 24px; }
.modal-legal p { margin: 0 0 12px; }
.modal-legal a { color: var(--light); text-decoration: underline; word-break: break-word; }
.modal-form .btn {
  margin-top: 10px;
  align-self: stretch;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 12px;
}

.newsletter-lead {
  text-align: center;
  font-size: clamp(18px, 1.9vw, 34px);
  font-weight: 500;
  line-height: 1.5;
  margin: clamp(40px, 5vw, 100px) auto 32px;
  max-width: 920px;
}
.newsletter-lead-spaced { margin-top: 120px; }

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 24px;
  align-items: stretch;
}
.newsletter-field {
  flex: 1;
  position: relative;
  border: 1.5px solid var(--light);
  border-radius: 50px;
  padding: 16px 28px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-field-label {
  font-size: 16px;
  font-weight: 400;
  opacity: .85;
  white-space: nowrap;
}
.newsletter-field input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--light);
  font-size: 16px;
  font-family: inherit;
}
.newsletter-form .btn {
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  justify-content: center;
}
.consent input {
  margin-top: 4px;
  width: 18px; height: 18px;
  accent-color: var(--light);
  flex-shrink: 0;
}
.consent span { text-align: center; }

.fajfy-section { padding: 120px 0; }
@media (min-width: 901px) {
  .fajfy-section { padding: 220px 0; }
}
.fajfy-title {
  margin: 0 auto 0;
  font-weight: 700;
  font-size: clamp(120px, 17vw, 240px);
  line-height: 0.9;
  color: var(--light);
  -webkit-text-stroke: 4px var(--orange);
  paint-order: stroke fill;
  text-align: center;
  letter-spacing: 0.04em;
}
.fajfy-content {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: clamp(8px, 1.5vw, 24px) auto 0;
}
.fajfy-badge {
  justify-self: start;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fajfy-orange {
  width: clamp(102px, 12vw, 170px);
  height: auto;
  display: block;
  margin-top: -70px;
}
.fajfy-text { text-align: center; }
.fajfy-desc {
  font-size: clamp(15px, 1.4vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.fajfy-headline {
  margin: 24px 0 0;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 48px);
  line-height: 1.25;
}
.fajfy-illustration {
  justify-self: end;
  align-self: end;
}
.fajfy-illustration img {
  width: 160px;
  height: auto;
}

.historia { padding: 100px 0 60px; position: relative; overflow: hidden; }
.historia-title {
  margin: 0 0 60px;
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.timeline-wrap {
  position: relative;
  margin-bottom: 60px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 22px auto auto auto;
  gap: 24px clamp(20px, 2.5vw, 48px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  z-index: 0;
  pointer-events: none;
}
.timeline-line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform-origin: left center;
}
.timeline-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  position: relative;
  z-index: 1;
}
.timeline-marker { grid-row: 1; }
.timeline-year { grid-row: 2; }
.timeline-desc { grid-row: 3; }
.timeline-photo { grid-row: 4; align-self: end; }
.timeline-marker {
  display: flex;
  align-items: center;
  height: 22px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
}
.timeline-year {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.timeline-desc {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--dark);
}
.timeline-photo {
  margin: 0;
  align-self: end;
  position: relative;
}
.timeline-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.timeline-photo figcaption {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  font-size: 10px;
  opacity: .55;
  color: var(--dark);
}

.historia-watermark {
  position: relative;
  margin-top: 0;
  margin-bottom: -500px;
  text-align: center;
  opacity: .5;
  pointer-events: none;
}
.historia-watermark img {
  width: 80%;
  max-width: 1700px;
  margin: 0 auto;
  filter: hue-rotate(-10deg) saturate(2);
}

.warsztaty { padding: 100px 0; overflow: hidden; }
.warsztaty.warsztaty-page { padding-top: 160px; }
@media (max-width: 900px) { .warsztaty.warsztaty-page { padding-top: 100px; } }
.warsztaty-inner {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 48px;
  align-items: center;
}
.warsztaty-inner > * { min-width: 0; }
.warsztaty-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
  max-width: 530px;
  width: 100%;
}
.warsztaty-photo img { width: 100%; height: 100%; object-fit: cover; }
.warsztaty-title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: clamp(32px, 3.9vw, 56px);
  line-height: 1.1;
  text-transform: uppercase;
}
.warsztaty-desc {
  margin: 0 0 40px;
  max-width: 840px;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 26px);
  line-height: 1.6;
}
.warsztaty-form-label {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 12px;
  opacity: .9;
}
.warsztaty-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.warsztaty-field {
  display: block;
  border: 1.5px solid var(--light);
  border-radius: 20px;
  padding: 14px 24px;
}
.warsztaty-field span {
  display: block;
  font-size: 14px;
  opacity: .8;
  margin-bottom: 4px;
}
.warsztaty-field input {
  width: 100%;
  background: transparent;
  border: 0; outline: 0;
  color: var(--light);
  font-size: 16px;
  font-family: inherit;
}
.warsztaty-form .consent {
  margin: 8px 0;
  font-size: 14px;
  max-width: none;
  text-align: center;
  justify-content: center;
}
.warsztaty-form .btn {
  align-self: center;
  margin-top: 8px;
  border-radius: 50px;
  min-width: 260px;
}

.kitchen-headline {
  margin: clamp(48px, 7.5vw, 130px) 0 32px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(34px, 3.9vw, 76px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--light);
}

.location { padding: 0; background: var(--light); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.location-text {
  
  padding: 80px 24px 80px max(60px, calc((100vw - 1800px) / 2 + clamp(20px, 2vw, 40px)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-title {
  margin: 0 0 32px;
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(34px, 3.9vw, 76px);
  text-transform: uppercase;
  line-height: 1.1;
}
.location-address {
  font-size: clamp(15px, 1.4vw, 26px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}
.location-hours-title {
  font-size: clamp(15px, 1.4vw, 26px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 28px 0 0;
}
.location-hours {
  font-size: clamp(15px, 1.4vw, 26px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  margin: 6px 0 0;
}
.location-map { width: 100%; min-height: 480px; overflow: hidden; }
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 36px;
}
.footer-social__link {
  display: inline-flex;
  color: #fff;
  transition: color .15s ease, transform .15s ease;
}
.footer-social__link:hover { color: var(--orange); transform: translateY(-2px); }
.footer-social__link svg { display: block; }
.footer-social__link--ig svg { width: 36px; height: 36px; }
.footer-social__link--fb svg { width: 34px; height: 34px; }
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  opacity: .75;
  margin: 0;
  max-width: 580px;
}
.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 18px;
}
.footer-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-icons img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-pij {
  font-size: 13px;
  opacity: .8;
}

@media (max-width: 1100px) {
  .section { padding: 64px 0; }
  .nav { gap: 28px; font-size: 16px; }
  .hero-title { font-size: 70px; }
  .hero-subtitle { font-size: 26px; }
  .fajfy-title { font-size: 160px; }
  .fajfy-content { grid-template-columns: 1fr; text-align: center; }
  .fajfy-illustration { justify-self: center; margin-top: 24px; }
  .fajfy-illustration img { height: auto; width: auto; max-height: 150px; }
  .fajfy-badge { position: static; justify-self: center; margin: 0 auto 20px; }
  .fajfy-orange { margin-top: 0; }
  .section-title { font-size: 34px; margin-bottom: 32px; }
  .historia-title { font-size: clamp(26px, 6vw, 44px); white-space: normal; text-align: center; line-height: 1.1; }
  .warsztaty-inner,
  .location-inner,
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col-right { align-items: flex-start; }
  .timeline-wrap { position: relative; }
  .timeline {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    grid-template-columns: none;
    gap: 40px;
    position: relative;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    bottom: 11px;
    width: 2px;
    background: var(--orange);
    z-index: 0;
  }
  .timeline-line { display: none; }
  .timeline-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 16px;
    row-gap: 12px;
    grid-row: auto;
    position: relative;
    z-index: 1;
  }
  .timeline-marker {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
  .timeline-year {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    text-align: center;
    padding-right: 24px;
  }
  .timeline-desc {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    text-align: center;
    padding-right: 24px;
  }
  .timeline-photo {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    justify-self: center;
    padding-right: 24px;
    max-width: 70%;
  }
  .timeline-photo img { aspect-ratio: 1 / 1; }
  .timeline-photo figcaption { left: 0; right: 24px; text-align: center; }
  .historia { padding-bottom: 120px; }
  .historia-watermark { margin-top: -300px; }
  .warsztaty-title { font-size: 36px; text-align: center; }
  .warsztaty-desc { text-align: center; }
  .warsztaty-cta { justify-content: center; }
  .warsztaty-body { text-align: center; align-items: center; }
  .kitchen-headline { font-size: 34px; }
  .location-title { font-size: 36px; text-align: center; }
  .location-address { text-align: center; }
  .location-text { text-align: center; align-items: center; }
}
@media (max-width: 900px) {
  .hamburger { display: flex; margin-left: auto; }
  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
    z-index: 1000;
    padding: 80px 30px 30px;
    margin: 0;
  }
  .topbar.nav-open .nav {
    transform: translateX(0);
  }
  
  .topbar.nav-open,
  .topbar.nav-open.scrolled {
    left: 0; top: 0; width: 100%;
    transform: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav a {
    color: var(--light);
    font-size: 28px;
    font-weight: 500;
    padding: 8px 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
    display: block;
    text-align: center;
  }
  .nav a::after { display: none; }
  .topbar.nav-open .nav a {
    opacity: 1;
    transform: translateY(0);
  }
  .topbar.nav-open .nav a:nth-child(1) { transition-delay: 0.10s; }
  .topbar.nav-open .nav a:nth-child(2) { transition-delay: 0.18s; }
  .topbar.nav-open .nav a:nth-child(3) { transition-delay: 0.26s; }
  .topbar.nav-open .nav a:nth-child(4) { transition-delay: 0.34s; }
  .topbar.nav-open .nav a:nth-child(5) { transition-delay: 0.42s; }
  body.nav-locked { overflow: hidden; }
}
@media (max-width: 640px) {
  .header-inner { padding: 16px 0; gap: 20px; }
  .hero { padding-bottom: 40px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .card-title { font-size: 20px; text-align: center; }
  .location-address { padding-bottom: 10px; }
  .newsletter-form { flex-direction: column; }
  .modal {
    margin: auto auto 0 auto;
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    animation: modal-slide-up .42s cubic-bezier(.2,.7,.2,1);
  }
  .modal::backdrop { backdrop-filter: blur(4px); }
  .modal-body { padding: 36px 24px 28px; }
  @keyframes modal-slide-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .timeline { grid-template-columns: 1fr; }
  .fajfy-title { font-size: 96px; }
  .location { padding-bottom: 0 !important; }
  .location-text { padding: 40px 30px; }
  .location-address { padding-bottom: 10px; }
  .footer-col-right,
  .footer-col-left {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-links { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-disclaimer { margin-left: auto; margin-right: auto; }
}

.modal-body { position: relative; }
.modal-field { position: relative; }
.modal-field-error {
  display: none;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  gap: 7px;
  font-style: normal; font-size: 12px; font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, .22);
  border-radius: 999px;
  padding: 5px 13px 5px 9px;
  margin-top: 6px;
  line-height: 1.25;
}
.modal-field-error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.modal-field.has-error { border-color: #ffd9c9; box-shadow: 0 0 0 2px rgba(210,58,26,.4); }
.modal-field.has-error .modal-field-error { display: inline-flex; }
.modal-field-error--consent { display: none; }
.modal-field-error--consent.is-shown { display: inline-flex; }

.modal-form { transition: opacity .28s ease, transform .32s cubic-bezier(.22,.61,.36,1); }
.modal-form.is-leaving { opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; }
.modal-success {
  position: absolute; inset: 0;
  background: var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 28px;
  z-index: 5;
  overflow: hidden;
  opacity: 0; transform: scale(.94);
  transition: opacity .32s ease .08s, transform .42s cubic-bezier(.22,.61,.36,1) .08s;
}
.modal-success.is-shown { opacity: 1; transform: scale(1); }
.modal-success[hidden] { display: none; }
.modal-success-inner { position: relative; z-index: 1; max-width: 1000px; margin: auto; }
.modal-success-title { font-size: clamp(28px, 4vw, 56px); line-height: 1.05; margin: 0 0 22px; text-transform: uppercase; font-weight: 700; color: var(--light); }
.modal-success-text { margin: 0 auto 18px; max-width: 760px; font-size: clamp(15px, 1.4vw, 20px); line-height: 1.55; opacity: .95; color: var(--light); }
.modal-success-text strong { font-weight: 700; }
.modal-success-back { margin-top: 18px; }
.modal-success-sign { margin: 0; font-weight: 700; font-size: clamp(18px, 1.9vw, 28px); color: var(--light); }
.modal-success-powisle {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translate(-50%, 30%);
  width: min(1080px, 124%);
  max-width: none; height: auto;
  pointer-events: none;
  opacity: .9;
}
.modal-success-scallop {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50px;
  background: var(--light);
  -webkit-mask-image: url('../img/decor/falbanka-top.svg');
  mask-image: url('../img/decor/falbanka-top.svg');
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: auto 186px;
  mask-size: auto 186px;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  z-index: 2;
}
.modal-success-logo {
  position: absolute;
  top: clamp(50px, 9vh, 104px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 12vw, 176px);
  height: auto;
  filter: brightness(0) invert(1);
  z-index: 2;
}

.modal:has(.modal-success:not([hidden])) {
  max-width: none;
  width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
}
.modal:has(.modal-success:not([hidden])) .modal-close {
  top: 64px; right: 24px;
  width: 48px; height: 48px;
  font-size: 38px;
}

.cookie-bar[hidden],
.cookie-modal[hidden] { display: none !important; }
.cookie-bar {
  position: fixed; inset: auto 16px 16px 16px; z-index: 1000;
  background: #fff; border: 1px solid #e3e7ee; border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.16), 0 4px 12px rgba(0,0,0,.06);
  padding: 18px 22px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22,.61,.36,1);
}
.cookie-bar.is-open { opacity: 1; transform: translateY(0); }
.cookie-bar__inner { display: flex; align-items: center; gap: 24px; max-width: 1400px; margin: 0 auto; }
.cookie-bar__text { flex: 1 1 auto; margin: 0; font-size: 13.5px; line-height: 1.55; color: #3a3f44; }
.cookie-bar__actions { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }
@media (max-width: 820px) {
  .cookie-bar { padding: 16px; border-radius: 12px; }
  .cookie-bar__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-bar__actions { justify-content: stretch; }
  .cookie-bar__actions .cookie-btn { flex: 1 1 0; }
}
.cookie-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 18px; font-size: 13px; font-weight: 600;
  text-align: center; white-space: nowrap;
  border-radius: 8px; border: 1px solid transparent; cursor: pointer;
  font-family: inherit;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.cookie-btn--primary { background: var(--dark); color: #fff; border-color: var(--dark); }
.cookie-btn--primary:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.cookie-btn--ghost { background: #fff; color: #1a1d20; border-color: #e3e7ee; }
.cookie-btn--ghost:hover { border-color: #1a1d20; }
.cookie-modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .22s ease; }
.cookie-modal.is-open { opacity: 1; }
.cookie-modal__backdrop { position: absolute; inset: 0; background: rgba(10,12,16,.55); backdrop-filter: blur(2px); }
.cookie-modal__card { position: relative; width: 100%; max-width: 640px; max-height: calc(100vh - 48px); background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.35); display: flex; flex-direction: column; overflow: hidden; transform: translateY(10px); transition: transform .28s cubic-bezier(.22,.61,.36,1); }
.cookie-modal.is-open .cookie-modal__card { transform: translateY(0); }
.cookie-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px 16px; border-bottom: 1px solid #eef0f4; }
.cookie-modal__head h2 { margin: 0; font-size: 17px; font-weight: 700; color: #1a1d20; }
.cookie-modal__close { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #6c7078; border: 1px solid transparent; background: transparent; cursor: pointer; transition: background .18s ease, border-color .18s ease; }
.cookie-modal__close:hover { background: #f5f7fb; border-color: #e3e7ee; }
.cookie-modal__body { padding: 18px 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.cookie-modal__foot { display: flex; gap: 12px; justify-content: flex-end; padding: 18px 24px 22px; border-top: 1px solid #eef0f4; background: #fbfcfe; }
.cookie-modal__foot .cookie-btn { flex: 1 1 0; }
@media (min-width: 600px) { .cookie-modal__foot .cookie-btn { flex: 0 0 auto; min-width: 200px; } }
.cookie-cat { border: 1px solid #e8ebf2; border-radius: 12px; padding: 13px 16px; transition: border-color .18s ease; }
.cookie-cat:hover { border-color: #d4d8e2; }
.cookie-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-cat__info { flex: 1 1 auto; min-width: 0; }
.cookie-cat__info h3 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: #1a1d20; }
.cookie-cat__info p { margin: 0; font-size: 12.5px; line-height: 1.5; color: #5a5f65; }
.cookie-cat__controls { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.cookie-cat__expand { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; color: #6c7078; background: transparent; border: 1px solid transparent; border-radius: 8px; cursor: pointer; transition: transform .22s ease, background .18s ease; }
.cookie-cat__expand:hover { background: #f5f7fb; }
.cookie-cat__expand[aria-expanded="true"] { transform: rotate(180deg); background: #f5f7fb; }
.cookie-cat__expand--placeholder { pointer-events: none; visibility: hidden; }
.cookie-cat__list { list-style: none; margin: 16px -6px 0; padding: 0; border-top: 1px solid #eef0f4; }
.cookie-cat__list li { padding: 12px 6px; border-bottom: 1px solid #f1f2f6; display: flex; flex-direction: column; gap: 4px; }
.cookie-cat__list li:last-child { border-bottom: 0; }
.cookie-cat__list-name { font-size: 12.5px; color: #1a1d20; font-weight: 600; }
.cookie-cat__list-name .text-muted { color: #8a8f94; font-weight: 400; }
.cookie-cat__list-desc { font-size: 12px; color: #5a5f65; line-height: 1.45; }
.cookie-toggle { position: relative; display: inline-block; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle__track { display: inline-block; width: 46px; height: 24px; background: #cdd2d8; border-radius: 30px; position: relative; transition: background .22s ease; }
.cookie-toggle__thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,.18); transition: transform .22s cubic-bezier(.22,.61,.36,1); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.cookie-toggle input:checked + .cookie-toggle__track { background: #f3a784; }
.cookie-toggle input:checked + .cookie-toggle__track .cookie-toggle__thumb { transform: translateX(22px); }
.cookie-toggle.is-locked { cursor: not-allowed; opacity: .95; }
.cookie-toggle.is-locked input:checked + .cookie-toggle__track { background: #f3a784; }
@media (max-width: 760px) {
  .cookie-cat__info p { display: none; }
  .cookie-cat:has(.cookie-cat__expand[aria-expanded="true"]) .cookie-cat__info p { display: block; margin-top: 8px; }
  .cookie-modal__card { border-radius: 14px; max-height: calc(100dvh - 24px); }
  .cookie-modal { padding: 12px; }
}

.cookie-fab {
  position: fixed; left: 16px; bottom: 16px; z-index: 950;
  width: 40px; height: 40px; border-radius: 9999px;
  background: #fff; color: var(--orange); border: 1px solid #e3e3e0;
  box-shadow: 0 6px 16px rgba(0,0,0,.10), 0 1px 3px rgba(0,0,0,.05);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cookie-fab[hidden] { display: none; }
.cookie-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.14), 0 2px 5px rgba(0,0,0,.06); background: #fff5ee; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target { scroll-margin-top: 110px; }
#wydarzenia, #fajfy, #menu, #historia, #warsztaty {
  scroll-margin-top: clamp(80px, 11vh, 140px);
}

.card-photo-zoom {
  background: none; border: 0; padding: 0; display: block; width: 100%;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.card-photo-zoom img { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
@media (hover: hover) {
  .card-photo-zoom:hover { transform: translateY(-2px); }
  .card-photo-zoom:hover img { transform: scale(1.04); }
}

.card-photo { position: relative; }
.card-ingredients {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px 22px;
  background: rgba(237, 106, 59, .85);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.card-ingredients__text {
  color: var(--light);
  font-size: 20px; line-height: 1.5; font-weight: 500;
  text-align: center; width: 100%;
  text-wrap: balance;
  transform: translateY(10px);
  transition: transform .35s ease;
}
@media (hover: hover) {
  .card-photo.has-ingredients:hover .card-ingredients { opacity: 1; }
  .card-photo.has-ingredients:hover .card-ingredients__text { transform: translateY(0); }
}
.card-photo.has-ingredients:focus-visible .card-ingredients { opacity: 1; }
.card-photo.has-ingredients:focus-visible .card-ingredients__text { transform: translateY(0); }
.card-photo.has-ingredients.is-revealed .card-ingredients { opacity: 1; }
.card-photo.has-ingredients.is-revealed .card-ingredients__text { transform: translateY(0); }

.lightbox {
  border: 0; padding: 0; margin: 0;
  background: transparent; color: var(--light);
  width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh;
  overflow: visible;
  opacity: 0; transform: scale(.97);
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,.61,.36,1);
}
.lightbox[open] {
  opacity: 1; transform: scale(1);
  display: flex; align-items: center; justify-content: center;
}
.lightbox.is-closing { opacity: 0; transform: scale(.98); }
.lightbox::backdrop {
  background: rgba(15,12,10,0);
  backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0);
  transition: background .3s ease, backdrop-filter .3s ease;
}
.lightbox[open]::backdrop {
  background: rgba(15,12,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.lightbox[open].is-closing::backdrop {
  background: rgba(15,12,10,0);
  backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0);
}
.lightbox__close {
  position: fixed; top: 20px; right: 20px;
  background: var(--light); color: var(--dark);
  border: 0; width: 48px; height: 48px; border-radius: 50%;
  font-size: 32px; line-height: 1; cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  padding: 0;
}
.lightbox__close:hover { background: var(--orange); color: var(--light); }
.lightbox__figure {
  margin: 0; padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  max-width: 100vw; max-height: 100vh;
}
.lightbox__img {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: calc(100vh - 140px);
  width: auto; height: auto;
  border-radius: 18px; object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.lightbox__caption {
  flex: 0 0 auto;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(18px, 2vw, 28px);
  text-align: center; letter-spacing: .02em;
  max-width: 92vw;
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox.is-closing { transition: none; transform: none; }
}

.lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); color: var(--light);
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; z-index: 10;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.lightbox__nav:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav[hidden] { display: none; }
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}
.lightbox__counter {
  font-size: 13px; opacity: .65; letter-spacing: .04em;
}
.lightbox__img.is-swapping { opacity: 0; transform: scale(.98); }
.lightbox__img { transition: opacity .18s ease, transform .22s ease; }

.pl-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--orange); color: var(--light);
  display: none; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .5s ease;
}
html.pl-loading .pl-loader { display: flex; }
html.pl-loader-out .pl-loader { opacity: 0; pointer-events: none; }
.pl-loader__logo {
  width: clamp(70px, 9vw, 110px); height: auto;
  filter: brightness(0) invert(1);
  animation: pl-loader-pulse 1.5s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pl-loader-pulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50%      { transform: scale(1.05); opacity: 1; }
}
html.pl-loading body { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .pl-loader__logo { animation: none; }
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (max-width: 900px) {
  .marquee { display: none !important; }
  .mobile-heading {
    display: block;
    text-align: center;
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1.05;
    margin: 0 0 28px;
    padding: 0 30px;
    min-height: 90px;
  }
  
  #wydarzenia .cards-grid,
  #menu .cards-grid,
  .section-koktajle .cards-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 40px;
  }
  .card-event img,
  .card-photo,
  .card-photo-rounded { border-radius: 0 !important; }
  .card { gap: 0; }
  .card-title { padding: 20px; text-align: center; }
  
  .fajfy-orange { transform: translateY(30px); }
  
  .scallop-hero { display: block; }
  
  .hero-title { font-size: 58px; }
  .hero-subtitle {
    max-width: 300px;
    font-size: 23px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }
  
  .newsletter-lead { padding-top: 60px; }
  #wydarzenia .mobile-heading { margin-top: 10px; margin-bottom: 40px; }
  #menu .mobile-heading { margin-top: -60px; }
  .kitchen-headline { margin-top: 120px; }
  .location-hours { margin-bottom: 60px; }
}
