/* ============================================================
   PUCIO NA WSI – style.css
   Breakpoints:
     mobile  : < 768px   (base / mobile-first)
     tablet  : 769–1280px
     desktop : 1281–1920px
     large   : 1921px+
   ============================================================ */

/* ── DEBUG – odkomentuj aby włączyć ramki ── */
/* * { outline: 1px solid red !important; } */

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Pucio';
  src: url('../fonts/geometricslab703bt_bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pucio';
  src: url('../fonts/geometricslab703bt_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --yellow:      #F5C12A;
  --yellow-dark: #E8AA10;
  --yellow-pale: #FDF0B8;
  --red:         #E83838;
  --red-dark:    #C42828;
  --teal:        #5CBFBB;
  --teal-dark:   #3FA09C;
  --cream:       #FEF6E4;
  --cream-dark:  #F5EDD0;
  --dark:        #1C120E;
  --dark-mid:    #2E1E16;
  --text:        #2C1810;
  --text-light:  #6B4B3A;
  --font-main:   'Pucio', 'Georgia', serif;
  --radius:      8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--font-main); background: #f9c254; color: var(--text); line-height: 1.6; overflow-x: hidden; }
main  { width: 100%; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 92%;
  margin-inline: auto;
}

/* mobile */
.container { max-width: 100%; }

/* tablet */
@media (min-width: 769px) {
  .container { max-width: 960px; }
}

/* desktop */
@media (min-width: 1281px) {
  .container { max-width: 1280px; }
}

/* large */
@media (min-width: 1921px) {
  .container { max-width: 1600px; }
}

/* ============================================================
   BUTTON – KUP BILET
   ============================================================ */
.btn-bilet {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-1.5deg);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--red-dark);

  /* mobile */
  font-size: 0.9rem;
  padding: 10px 24px;
}
.btn-bilet:hover {
  background: var(--red-dark);
  transform: rotate(-1.5deg) translateY(-2px);
}

@media (min-width: 769px) {
  .btn-bilet { font-size: 1rem; padding: 12px 30px; }
}
@media (min-width: 1281px) {
  .btn-bilet { font-size: 1.05rem; padding: 14px 36px; }
}
@media (min-width: 1921px) {
  .btn-bilet { font-size: 1.2rem; padding: 16px 44px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero          { position: relative; }
.hero-stage    { position: relative; }

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-curtain {
  position: absolute;
  top: -36px;
  height: auto;
  pointer-events: none;
  z-index: 4;
  /* mobile */
  width: 30%;
}
.hero-curtain--left  { left: -146px; }
.hero-curtain--right { right: -164px; }

.hero-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  pointer-events: none;
  z-index: 10;
  /* mobile */
  width: 100%;
}

.hero-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  /* mobile */
  left: 15%;
  width: 28%;
}

.hero-social {
  position: absolute;
  pointer-events: auto;
  z-index: 6;
  height: auto;
  /* mobile */
  width: 14%;
  top: 67%;
}
.hero-social--fb    { right: 2%; }
.hero-social--insta { right: 11%; }

@media (min-width: 769px) {
  .hero-social        { width: 8%; top: 22%; }
  .hero-social--fb    { right: 27%; }
  .hero-social--insta { right: 31%; }
}
@media (min-width: 1281px) {
  .hero-social        { width: 8%; top: 22%; }
  .hero-social--fb    { right: 27%; }
  .hero-social--insta { right: 31%; }
}
@media (min-width: 1921px) {
  .hero-social        { width: 8%; top: 22%; }
  .hero-social--fb    { right: 27%; }
  .hero-social--insta { right: 31%; }
}

.hero-seats {
  position: relative;
  z-index: 3;
  line-height: 0;
  /* mobile */
  transform: translateY(-75%);
}
.hero-seats > img {
  width: 65%;
  display: block;
  margin: 0 auto;
  animation: audienceSway 6s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes audienceSway {
  0%   { transform: translateY(0)      scaleY(1); }
  15%  { transform: translateY(-0.4%)  scaleY(1.003); }
  30%  { transform: translateY(0.2%)   scaleY(0.999); }
  45%  { transform: translateY(-0.3%)  scaleY(1.002); }
  60%  { transform: translateY(0.3%)   scaleY(0.998); }
  75%  { transform: translateY(-0.2%)  scaleY(1.001); }
  100% { transform: translateY(0)      scaleY(1); }
}

.hero-nav {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 5;
  line-height: normal;
  /* mobile */
  top: 115%;
  gap: 6px 8px;
  width: 96%;
}

.hero-nav__pill {
  display: inline-block;
  border-radius: 999px;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
  /* mobile */
  --pill-font-size: 0.82rem;
  --pill-padding: 5px 12px;
  font-size: var(--pill-font-size);
  padding: var(--pill-padding);
}
.hero-nav__pill:hover         { opacity: 0.85; transform: translateY(-2px); }
.hero-nav__pill--teal         { background: #fff; color: #e84f55; }
.hero-nav__pill--red          { background: #e84f55; color: #fff; }

/* tablet */
@media (min-width: 769px) {
  .hero-curtain  { width: 41%; }
  .hero-top      { width: 70%; }
  .hero-logo     { left: 16%; width: 24%; }
  .hero-seats    { transform: translateY(-80%); }
  .hero-nav      { top: 72%; gap: 6px 8px; width: 90%; }
  .hero-nav__pill { font-size: 0.72rem; padding: 6px 14px; }
}

/* desktop */
@media (min-width: 1281px) {
  .hero-curtain  { width: 42%; }
  .hero-top      { width: 62%; }
  .hero-logo     { left: 17%; width: 22%; }
  .hero-seats    { transform: translateY(-50%); }
  .hero-nav      { top: 72%; gap: 8px 10px; width: 90%; }
  .hero-nav__pill { font-size: 0.82rem; padding: 8px 20px; }
}

/* large */
@media (min-width: 1921px) {
  .hero-curtain  { width: 37%; }
  .hero-top      { width: 55%; }
  .hero-logo     { left: 18%; width: 20%; }
  .hero-seats    { transform: translateY(-50%); }
  .hero-nav      { top: 72%; gap: 8px 10px; width: 90%; }
  .hero-nav__pill { font-size: 1rem; padding: 10px 26px; }
}

/* ============================================================
   O SPEKTAKLU
   ============================================================ */

/* ── MOBILE: układ liniowy ── */
.o-spektaklu { padding: 40px 0 40px; padding-bottom:0;}

.os-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 1.5rem;
}

.os-el { position: static; }

.os-blob {
  background: #fff;
  border-radius: 8px;
  color: #e84f55;
  overflow: visible;
  position: relative;
  --x: 0px;
  --y: -24px;
  left: var(--x);
  top: var(--y);
  width: 90%;
  padding: 20px 16px 36px;
  transform: rotate(-3deg);
  z-index:5;
}
.os-blob br { display: none; }
.os-blob p  { line-height: 1.7; margin-bottom: 12px; font-size: 0.9rem; }
.os-blob p:last-of-type { margin-bottom: 0; }

.os-bee {
  position: absolute;
  bottom: 0;
  left: 88%;
  transform: translateX(-50%) translateY(50%);
  z-index: 2;
  width: 26%;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(50%) rotate(-5deg); }
  50%       { transform: translateX(-50%) translateY(calc(50% - 14px)) rotate(4deg); }
}

.os-flowers  { display: none; }
.os-banner-img { display: block; order: -1; width: 90%; margin: 0 auto; z-index: 6; }

.os-info {
  background: var(--teal);
  border-radius: 20px;
  color: #fff;
  width: 90vw;
  padding: 20px 16px;
  position: relative;
  --y: -44px;
  top: var(--y);
}
.os-info p { line-height: 1.7; margin-bottom: 12px; font-size: 0.9rem; }
.os-info p:last-child { margin-bottom: 0; }

/* ── TABLET / DESKTOP / LARGE: os-info w flow, dekoracje absolutne ── */
@media (min-width: 769px) {
  .o-spektaklu { padding: 0; }

  .os-stage {
    position: relative;
    display: block;
    /* brak aspect-ratio – wysokość definiuje os-info w normalnym flow */
    padding: 3vw 0 5vw;
    overflow: visible;
  }

  /* os-el domyślnie absolutne – os-info nadpisuje na relative */
  .os-el { position: absolute; }

  /* ── os-info: W NORMALNYM FLOW – definiuje wysokość sekcji ── */
  .os-info {
    position: relative;   /* nadpisuje .os-el */
    --w:  56%;
    --z:  1;
    --y:  0px;
    display: block;
    width:   var(--w);
    margin:  0 auto;
    z-index: var(--z);
    top:     var(--y);
    padding: 1.8% 1.6%;
    padding-top: 4%;
  }
  .os-info p { font-size: 1.2vw; }

  /* ── os-blob ── */
  .os-blob {
    --x:      26%;
    --y:      -13%;
    --w:      26%;
    --rotate: -3deg;
    --z:      3;
    left:     var(--x);
    top:      var(--y);
    width:    var(--w);
    transform: rotate(var(--rotate));
    z-index:  var(--z);
    padding:  1.5% 1.2% 1.5%;
  }
  .os-blob p { font-size: 1.25vw; }

  /* ── os-bee (pszczółka w blob) ── */
  .os-bee { width: 100%; bottom: -62px; left: -55%; }

  /* ── os-flowers ── */
  .os-flowers {
    display: block;
    --x:  59%;
    --y:  -22%;
    --w:  16%;
    --z:  0;
    left:    var(--x);
    top:     var(--y);
    width:   var(--w);
    z-index: var(--z);
    transform: none;
  }

  /* ── os-banner-img ── */
  .os-banner-img {
    display: block;
    --x:  36%;
    --y:  -27%;
    --w:  29%;
    --z:  3;
    left:    var(--x);
    top:     var(--y);
    width:   var(--w);
    z-index: var(--z);
    transform: none;
  }
}

/* desktop 1281-1920 */
@media (min-width: 1281px) {
  .o-spektaklu   { padding: 0; }
  .os-stage      { padding: 3vw 0 5vw; padding-bottom: 0;}
  .os-info       { --w: 56%; padding: 1.8% 1.6%; padding-top: 6%; }
  .os-info p     { font-size: 1.2vw; }
  .os-blob       { --x: 24%; --y: -7%; --w: 32%; --z: 3; }
  .os-blob p     { font-size: 1.2vw; }
  .os-flowers    { --x: 65%; --y: -17%; --w: 12%; }
  .os-banner-img { --x: 40%; --y: -18%; --w: 23%; }
  .os-bee        { width: 750%; bottom: -62px; left: -40%; }
}

/* large 1921+ */
@media (min-width: 1921px) {
  .o-spektaklu   { padding: 0; }
  .os-stage      { padding: 3vw 0 5vw; }
  .os-info       { --w: 56%; padding: 1.8% 1.6%; padding-top: 4%; }
  .os-info p     { font-size: 1.2vw; }
  .os-blob       { --x: 26%; --y: -7%; --w: 26%; --z: 3; }
  .os-blob p     { font-size: 0.95vw; }
  .os-flowers    { --x: 63%; --y: -22%; --w: 15%; }
  .os-banner-img { --x: 40%; --y: -18%; --w: 23%; }
  .os-bee        { width: 100%; bottom: -62px; left: -55%; }
}

/* ============================================================
   PUCIO-SECTION – DLA KOGO
   ============================================================ */
.pucio-section {
  /* mobile */
  padding: 3rem 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.pucio-container {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  /* mobile */
  flex-direction: column;
  gap: 3rem;
  max-width: 100%;
}

.pucio-left  { position: relative; width: 100%; }
.pucio-right { position: relative; width: 100%; }

.pucio-header {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateY(50%);
  /* mobile */
  width: 75%;
}

.pucio-box {
  background: #f3efe4;
  border-radius: 40px;
  position: relative;
  overflow: visible;
  /* mobile */
  padding: 5rem 1.5rem 2.5rem;
}

.pucio-box-center {
  text-align: center;
  color: #c0395a;
  /* mobile */
  padding: 5rem 1.5rem 6rem;
}

.pucio-box__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 769px) {
  .pucio-box__inner { grid-template-columns: 1fr 1fr; }
}

.pucio-tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pucio-tag {
  background: #6fb3ac;
  color: #fff;
  border-radius: 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: relative;
  /* mobile */
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  left: 0; /* zmień aby przesunąć tag w lewo/prawo */
}

.pucio-tag:nth-child(1) { --offset: 0px; }
.pucio-tag:nth-child(2) { --offset: 14px; }
.pucio-tag:nth-child(3) { --offset: -11px; }
.pucio-tag { left: var(--offset); }

.pucio-text          { margin-top: 0; text-align: center;}
.pucio-text h3       { margin-bottom: 0.5rem; font-size: 1.25rem; color: #c0395a; }
.pucio-text p        { line-height: 1.8; font-size: 1.25rem; color: #c0395a; }

.pucio-left .pucio-cta {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
  max-width: 290px;
}

.pucio-right .pucio-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  width: 55%;
  max-width: 290px;
  cursor: pointer;
  z-index: 2;
}

.pucio-box-center > p {
  line-height: 1.8;
  margin: 0 auto 0.5rem;
  /* mobile */
  font-size: 1.25rem;
  max-width: 100%;
}

.pucio-frog {
  position: absolute;
  bottom: 100%;
  transform: translateY(40%);
  animation: frogJump 1.6s ease-in-out infinite;
  /* mobile */
  width: 100px;
  right: -10px;
}

@keyframes frogJump {
  0%, 100% { transform: translateY(40%); }
  50%       { transform: translateY(calc(40% - 18px)) rotate(-3deg); }
}

.pucio-masks {
  display: none;
  margin: 2rem auto 0;
  animation: masksFloat 5s ease-in-out infinite;
  transform-origin: center center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  /* mobile */
  width: 60%;
  max-width: 260px;
}

@keyframes masksFloat {
  0%   { transform: translateY(0)     rotate(-1deg)  scale(1); }
  25%  { transform: translateY(-8px)  rotate(0.5deg) scale(1.015); }
  50%  { transform: translateY(-14px) rotate(1.5deg) scale(1.02); }
  75%  { transform: translateY(-6px)  rotate(-0.5deg) scale(1.01); }
  100% { transform: translateY(0)     rotate(-1deg)  scale(1); }
}

/* tablet */
@media (min-width: 769px) {
  .pucio-section    { padding: 4rem 2rem; padding-bottom:0; padding-top:0;}
  .pucio-container  { flex-direction: row; gap: 4rem; max-width: 960px; }
  .pucio-left       { flex: 3; width: auto; }
  .pucio-right      { flex: 2; width: auto; }
  .pucio-header     { max-width: 200px; }
  .pucio-box        { padding: 5rem 2rem 3.5rem; }
  .pucio-box-center { padding: 5rem 2rem 6rem; }
  .pucio-tag        { padding: 1rem 1.3rem; font-size: 0.9rem; }
  .pucio-left .pucio-cta  { max-width: 200px; }
  .pucio-right .pucio-cta { max-width: 210px; }
  .pucio-frog       { width: 120px; right: -20px; }
  .pucio-masks      { display: block; width: 50%; max-width: 280px; }
}

/* desktop */
@media (min-width: 1281px) {
  .pucio-section    { padding: 5rem 2rem; padding-bottom: 0; padding-top: 0;}
  .pucio-container  { gap: 5rem; max-width: 1200px; }
  .pucio-header     { max-width: 240px; }
  .pucio-box        { padding: 5rem 2.5rem 4rem; }
  .pucio-box-center { padding: 5rem 2.5rem 6rem; }
  .pucio-tag        { padding: 1.1rem 1.5rem; font-size: 0.95rem; }
  .pucio-text       { max-width: 460px; }
  .pucio-left .pucio-cta  { max-width: 240px; }
  .pucio-right .pucio-cta { max-width: 240px; width: 60%; }
  .pucio-box-center > p   {  line-height: 1.8; font-size: 1.25rem; color: #c0395a; }
  .pucio-frog       { width: 140px; right: -30px; }
  .pucio-masks      { width: 38%; max-width: 320px; }
}

/* large */
@media (min-width: 1921px) {
  .pucio-section    { padding: 5rem 2rem; padding-bottom: 0; }
  .pucio-container  { max-width: 1500px; gap: 6rem; }
  .pucio-left       { flex: 3; width: auto; }
  .pucio-right      { flex: 2; width: auto; }
  .pucio-header     { max-width: 300px; }
  .pucio-box        { padding: 5rem 3rem 4rem; }
  .pucio-box-center { padding: 5rem 3rem 6rem; }
  .pucio-tag        { padding: 1.2rem 1.8rem; font-size: 1rem; }
  .pucio-text       { max-width: 520px; }
  .pucio-text h3    { font-size: 2.3rem; }
  .pucio-text p     { font-size: 1.25rem; line-height: 1.8; }
  .pucio-left .pucio-cta  { max-width: 280px; }
  .pucio-right .pucio-cta { max-width: 280px; width: 60%; }
  .pucio-box-center > p   { font-size: 1.3rem; line-height: 1.8; }
  .pucio-frog       { width: 170px; right: -40px; }
  .pucio-masks      { width: 35%; max-width: 380px; }
}

/* ============================================================
   PUCIO-MAP-SECTION – MAPA / TRASA
   ============================================================ */
.pucio-map-section {
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
  background: linear-gradient(to bottom, #f9c254 0%, #6fb3ac 20%, #6fb3ac 80%, #f9c254 100%);
}

.pucio-map-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
  /* mobile */
  flex-direction: column;
  gap: 3rem;
  padding: 10rem 5vw 4rem;
}

.pucio-map-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  /* mobile */
  width: 90vw;
}

.pucio-map-right {
  /* mobile */
  width: 100vw;
  margin-top: -50px;
  --x: -60px;
  position: relative;
  z-index: 4;
  left: var(--x);
}

.pucio-map-badge {
  transform: rotate(-1.8deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60vw;
  height: 60vw;
  max-width: 320px;
  max-height: 320px;
  border-radius: 50%;
  background: #fff;
  color: #c0395a;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6em;
  text-align: center;
  text-decoration: none;
  padding: 1.5vw;
  line-height: 1.1;
  transform: rotate(1.8);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pucio-map-image        { display: block; width: 100%; height: auto; padding-bottom:1.3em; }

.pucio-map-badge-wrap {
  position: relative;
  display: inline-block;
  --wrap-x:     13%;
  --wrap-y:     11%;
  --wrap-scale: 1.7;
  left:      var(--wrap-x);
  top:       var(--wrap-y);
  transform: scale(var(--wrap-scale));
}

.pucio-map-char {
  --char-x:   142%;
  --char-y:   -31%;
  --char-w:   55%;
  position: absolute;
  left:   var(--char-x);
  top:    var(--char-y);
  width:  var(--char-w);
  height: auto;
  pointer-events: none;
  z-index: 5;
}

.pucio-map-trasa {
  --trasa-x:     0%;
  --trasa-y:     -11%;
  --trasa-scale: 1;
  position: absolute;
  left:      var(--trasa-x);
  top:       var(--trasa-y);
  transform: scale(var(--trasa-scale));
  height: auto;
  pointer-events: none;
  z-index: 3;
}

/* tablet */
@media (min-width: 769px) {
  .pucio-map-container { flex-direction: row; gap: 4vw; padding: 0; }
  .pucio-map-left      { width: 42.5vw; padding-left: 12vw; }
  .pucio-map-right     { width: 58.5vw; padding-right: 4vw; }
  .pucio-map-badge     { width: 22vw; height: 22vw; font-size: 1.8vw; padding: 1.5vw; }
  .pucio-map-char      { --char-x: 0%; --char-y: -10%; --char-w: 29%; }
}

/* desktop */
@media (min-width: 1281px) {
  .pucio-map-container { flex-direction: row; gap: 4vw; padding: 0; }
  .pucio-map-left  { width: 42.5vw; padding-left: 12vw; overflow: visible; }
  .pucio-map-right { width: 58.5vw; padding-right: 4vw; overflow: visible; }
  .pucio-map-badge { width: 22vw; height: 22vw; font-size: 1.8vw; padding: 1.5vw; }
  .pucio-map-char  {--char-x: -4%; --char-y: -7%; --char-w: 27%;}
}

/* large */
@media (min-width: 1921px) {
  .pucio-map-left  { width: 38vw; padding-left: 6vw; }
  .pucio-map-right { width: 38vw; padding-right: 6vw; }
  .pucio-map-badge { width: 20vw; height: 20vw; font-size: 0.9vw; padding: 1.5vw; }
  .pucio-map-char  { --char-x: -3%;
        --char-y: -11%;
        --char-w: 29%; }
}

/* ============================================================
   BOH-SECTION – BOHATEROWIE (kompozycja warstwowa)
   ============================================================ */
.boh-section {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #f9c254 0%, #6fb3ac 70%, #f9c254 100%);
  position: relative;
  z-index: 1;
}

/* ── MOBILE: układ liniowy ── */
.boh-stage {
  position: static;
  height: auto;
  max-height: none;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* mobile */
  padding: 3rem 1.5rem 0;
  gap: 1.5rem;
}

.boh-el {
  position: static;
  transform: none;
  width: auto;
  max-width: 100%;
}

.boh-heading      { width: 70vw; }
.boh-content      { width: 90vw; align-items: center; text-align: center; display: flex; flex-direction: column; gap: 1rem; }
.boh-textbox      { width: 90vw; max-width: none; box-sizing: border-box; position: relative; background: #fdf6e3; border-radius: 20px; overflow: visible; padding: 1.2rem 1.5rem; }
.boh-title        { font-family: var(--font-main); color: #e84f55; margin-bottom: 0.6rem; font-size: 6vw; }
.boh-desc         { line-height: 1.7; color: #333; font-size: 3.8vw; }
.boh-cta          { position: absolute; left: 50%; top: 111%; transform: translate(-50%, -50%); display: block; width: fit-content; }
.boh-cta img      { display: block; width: 40vw; }
.boh-cart         { width: 100%; margin-bottom: -8vw; order: 99; }
.boh-curtain      { display: none; }
.boh-sunflower    { display: none; }

@keyframes sunflowerSway {
  0%, 100% { transform: scale(var(--scale)) rotate(-3deg); }
  50%       { transform: scale(var(--scale)) rotate(3deg); }
}

/* ── TABLET / DESKTOP: układ absolutny ── */
@media (min-width: 769px) {
  .boh-stage {
    position: relative;
    display: block;
    padding: 0;
    /* aspect-ratio zapewnia proporcjonalne skalowanie */
    aspect-ratio: 5 / 4;
    height: auto;
  }

  .boh-el {
    position: absolute;
  }

  .boh-sunflower {
    display: block;
    --x:      -12%;
    --bottom: -4%;
    --scale:  1;
    --z:      3;
    right:          var(--x);
    bottom:         var(--bottom);
    width:          28%;
    transform-origin: bottom center;
    transform:      scale(var(--scale)) rotate(0deg);
    z-index:        var(--z);
    animation:      sunflowerSway 4s ease-in-out infinite;
  }

  .boh-curtain {
    display: block;
    --x:      4%;
    --y:      -14%;
    --scale:  0.5;
    --rotate: 0deg;
    --z:      2;
    right:     var(--x);
    top:       var(--y);
    width:     48%;
    height:    auto;
    transform: scale(var(--scale)) rotate(var(--rotate));
    z-index:   var(--z);
  }

  .boh-cart {
    --x:      13%;
    --y:      19%;
    --scale:  0.8;
    --rotate: 0deg;
    --z:      3;
    left:      var(--x);
    bottom:    var(--y);
    width:     86%;
    margin-bottom: 0;
    transform: scale(var(--scale)) rotate(var(--rotate));
    z-index:   var(--z);
  }

  .boh-heading {
    --x:      18%;
    --y:      0%;
    --scale:  0.7;
    --rotate: -5deg;
    --z:      5;
    left:      var(--x);
    top:       var(--y);
    width:     34%;
    transform: scale(var(--scale)) rotate(var(--rotate));
    z-index:   var(--z);
  }

  .boh-content {
    --y: 8%;
    --z: 4;
    left:      50%;
    top:       var(--y);
    transform: translateX(-50%);
    width:     40vw;
    z-index:   var(--z);
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .boh-textbox {
    width: 130%;
    max-width: none;
    padding: 3.6% 11%;
    padding-bottom: 10%;;
  }
  .boh-title { font-size: 2.5vw; }
  .boh-desc  { font-size: 1.2vw; }
  .boh-cta   { top: 107%; }
  .boh-cta img { width: 18vw; }

}

/* desktop */
@media (min-width: 1281px) {
  .boh-stage    { aspect-ratio: 5 / 4; }
  .boh-sunflower { --x: -12%; --bottom: -4%; --scale: 1; width: 28%; }
  .boh-curtain  { --x: 4%; --y: -14%; --scale: 0.5; --rotate: 0deg; width: 48%; }
  .boh-cart     { --x: 9%; --y: 16%; --scale: 0.8; --rotate: 0deg; width: 92%; }
  .boh-heading  { --x: 33%; --y: 0%; --scale: 0.7; --rotate: -2deg; width: 34%; }
  .boh-content  { --y: 8%; width: 40vw; }
  .boh-textbox  { width: 130%; padding: 3.6% 11%; padding-bottom: 10%; }
  .boh-title    { font-size: 2.5vw; }
  .boh-desc     { font-size: 1.2vw; }
  .boh-cta      { top: 107%; }
  .boh-cta img  { width: 18vw; }
}

/* large */
@media (min-width: 1921px) {
  .boh-stage    { aspect-ratio: 5 / 4; }
  .boh-sunflower { --x: -12%; --bottom: -4%; --scale: 1; width: 28%; }
  .boh-curtain  { --x: 5%; --y: -14%; --scale: 0.5; --rotate: 0deg; width: 48%; }
  .boh-cart     { --x: 13%; --y: 20%; --scale: 0.8; --rotate: 0deg; width: 86%; }
  .boh-heading  { --x: 33%; --y: -1%; --scale: 0.7; --rotate: -2deg; width: 34%; }
  .boh-content  { --y: 8%; width: 40vw; }
  .boh-textbox  { width: 130%; padding: 3.6% 11%; padding-bottom: 9%; }
  .boh-title    { font-size: 2.5vw; }
  .boh-desc     { font-size: 1.2vw; }
  .boh-cta      { top: 107%; }
  .boh-cta img  { width: 18vw; }
}

/* ============================================================
   TW-SECTION – TWÓRCY (kompozycja warstwowa)
   ============================================================ */
.tw-section {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.tw-section--top {
  --overlap: -15vw;
  overflow: hidden;
  z-index: 2;
  margin-top: var(--overlap);
}

.tw-section--bottom {
  z-index: 1;
}

/* MOBILE */
.tw-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 2rem;
  gap: 1.5rem;
}

.tw-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 2.5rem;
  gap: 1.5rem;
}
.tw-bottom__inner {
  display: contents;
}

.tw-el {
  position: static;
  transform: none;
  width: auto;
  max-width: 100%;
  animation: none;
}

/* kolejność na mobile */
.tw-tworcy-label { order: 0; }
.tw-heading      { order: 1; text-align: center; }
.tw-desc         { order: 2; width: 100%; text-align: center; }
.tw-card--main   { order: 3; width: 70vw; }
.tw-cards-row    { order: 4; }
.tw-cat          { display: none; }

.tw-tworcy-label {
  --x: 2%;
  --y: 36%;
  --scale: 1;
  --rotate: -3deg;
  --z: 6;

  width:     14vw;
  max-width: 180px;
  transform: rotate(var(--rotate)) scale(var(--scale));
  z-index:   var(--z);
}

.tw-name { font-family: var(--font-main); color: #e84f55; background: #fff; border-radius: 10px; padding: 0.4rem 1.2rem; letter-spacing: 0.02em; white-space: normal; font-size: clamp(1.4rem, 6vw, 2rem); }
.tw-desc p { font-size: clamp(0.8rem, 4vw, 1rem); line-height: 1.9; color: #e84f55; background: #fff; border-radius: 12px; padding: 0.8rem 1.2rem; }

.tw-caption         { display: flex; flex-direction: column; align-items: center; margin-top: 0.5rem; }
.tw-caption__name   { font-family: var(--font-main); color: #e84f55; font-weight: 700; font-size: 0.85rem; }
.tw-caption__role   { color: #e84f55; margin-top: 0.1rem; font-size: 0.75rem; }

.tw-card img { display: block; border-radius: 8px; box-shadow: 4px 6px 18px rgba(0,0,0,0.18); }
.tw-card--main img { width: 85%; }

.tw-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}
.tw-card--1, .tw-card--2, .tw-card--3 { width: 100%; }
.tw-card--1 img, .tw-card--2 img, .tw-card--3 img { width: 100%; }

/* ── TABLET / DESKTOP: układ absolutny ── */
@media (min-width: 769px) {
  .tw-section--top  { overflow: hidden; margin-top: var(--overlap); }
  .tw-section--bottom { overflow: hidden; }

  .tw-top {
    position: relative;
    aspect-ratio: 17 / 8;
    width: 100%;
    padding: 0;
    display: block;
  }

  .tw-bottom {
    position: relative;
    padding: 4rem 0;
  }
  .tw-bottom__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2vw;
  }

  .tw-el {
    position: absolute;
    transform: none;
    animation: none;
  }

  .tw-tworcy-label {
    --x:      5%;
    --y:      8%;
    --rotate: -3deg;
    --z:      6;
    left:      var(--x);
    top:       var(--y);
    transform: rotate(var(--rotate));
    z-index:   var(--z);
    font-size: 1.5vw;
    padding: 0.5vw 1.4vw;
    border-radius: 8px;
  }

  .tw-heading {
    --x:      15%;
    --y:      17%;
    --rotate: 0deg;
    --scale:  1;
    --z:      4;
    left:      var(--x);
    top:       var(--y);
    width:     38%;
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index:   var(--z);
    text-align: center;
    order: unset;
  }
  .tw-name { white-space: normal; font-size: 1.9rem;}

  .tw-desc {
    --x:      15%;
    --y:      31%;
    --rotate: 0deg;
    --scale:  1;
    --z:      4;
    left:      var(--x);
    top:       var(--y);
    width:     38%;
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index:   var(--z);
    text-align: center;
    order: unset;
  }
  .tw-desc p { font-size: 1.25rem;}

  .tw-card--main {
    --x:      53%;
    --y:      5%;
    --rotate: 4deg;
    --scale:  1;
    --z:      5;
    left:      var(--x);
    top:       var(--y);
    width:     28%;
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index:   var(--z);
    order: unset;
  }

  .tw-caption__name { font-size: clamp(0.75rem, 1vw, 0.95rem); }
  .tw-caption__role { font-size: clamp(0.65rem, 0.85vw, 0.8rem); }

  /* DOLNA CZĘŚĆ – karty w normalnym flow, wyśrodkowane */
  .tw-cards-row {
    display: flex;
    justify-content: center;
    gap: 3vw;
    width: auto;
    position: static;
  }
  .tw-card--1, .tw-card--2, .tw-card--3 {
    position: static;
    width: 14vw;
    transform: none;
    left: unset;
    top: unset;
  }
  .tw-card--1 { transform: rotate(-5deg); }
  .tw-card--2 { transform: rotate(3deg); }
  .tw-card--3 { transform: rotate(-2deg); }

  .tw-cat {
    display: block;
    position: absolute;
    --x:      75%;
    --y:      15%;
    --rotate: 0deg;
    --scale:  1;
    --z:      2;
    left:           var(--x);
    top:            var(--y);
    width:          10vw;
    transform-origin: bottom center;
    transform:      rotate(var(--rotate)) scale(var(--scale));
    z-index:        var(--z);
    animation:      catWiggle 3.5s ease-in-out infinite;
  }

  @keyframes catWiggle {
    0%   { transform: rotate(0deg)  translateY(0);    }
    20%  { transform: rotate(-4deg) translateY(-4px); }
    40%  { transform: rotate(3deg)  translateY(-2px); }
    60%  { transform: rotate(-2deg) translateY(-5px); }
    80%  { transform: rotate(4deg)  translateY(-2px); }
    100% { transform: rotate(0deg)  translateY(0);    }
  }
}

/* mobile: zerowanie overlap */
@media (max-width: 768px) {
  .tw-section--top  { overflow: visible; margin-top: 0; }
  .tw-section--bottom { overflow: visible; }
}

/* desktop */
@media (min-width: 1281px) {
  .tw-top { aspect-ratio: 17 / 6; width: 100%; }
  .tw-tworcy-label {
    --x:      47%;
    --y:      15%;
    --rotate: -3deg;
  }
  .tw-heading {
    --x:      47%;
    --y:      25%;
    --rotate: 0deg;
    --scale:  1;
    --z:      4;
    width:    38%;
  }
  .tw-card--main {
    --x:      24%;
    --y:      13%;
    --rotate: -3deg;
    --scale:  1;
    --z:      5;
  }
  .tw-card--main img { width: 61%; }
  .tw-desc {
    --x:      47%;
    --y:      41%;
    --rotate: 0deg;
  }
  .tw-desc p { font-size: clamp(0.8rem, 1.1vw, 1rem); padding: 3vw; }
}

/* large */
@media (min-width: 1921px) {
  .tw-section--top   { overflow: hidden; margin-top: var(--overlap); }
  .tw-section--bottom { overflow: hidden; }
  .tw-top            { aspect-ratio: 17 / 6; width: 100%; }
  .tw-bottom         { padding: 4rem 0; }
  .tw-bottom__inner  { display: flex; justify-content: center; align-items: flex-start; gap: 2vw; }
  .tw-tworcy-label   { --x: 47%; --y: 15%; --rotate: -3deg; font-size: 1.5vw; padding: 0.5vw 1.4vw; }
  .tw-heading        { --x: 47%; --y: 25%; --rotate: 0deg; --scale: 1; --z: 4; }
  .tw-name           { white-space: nowrap; font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
  .tw-desc           { --x: 47%; --y: 41%; --rotate: 0deg; width: 38%; }
  .tw-desc p         { font-size: clamp(0.8rem, 1.1vw, 1rem); padding: 3vw; }
  .tw-card--main     { --x: 24%; --y: 13%; --rotate: -3deg; --scale: 1; --z: 5; width: 28%; }
  .tw-card--main img { width: 61%; }
  .tw-cards-row      { display: flex; justify-content: center; gap: 3vw; }
  .tw-card--1, .tw-card--2, .tw-card--3 { position: static; width: 14vw; }
  .tw-card--1        { transform: rotate(-5deg); }
  .tw-card--2        { transform: rotate(3deg); }
  .tw-card--3        { transform: rotate(-2deg); }
  .tw-caption__name  { font-size: clamp(0.75rem, 1vw, 0.95rem); }
  .tw-caption__role  { font-size: clamp(0.65rem, 0.85vw, 0.8rem); }
  .tw-cat            { width: 10vw; --x: 75%; --y: 15%; }
}

/* ============================================================
   FAQ-SECTION
   ============================================================ */
.faq-section {
  width: 100%;
  box-sizing: border-box;
  background: #f9c254;
}

/* ── MOBILE: układ liniowy ── */
.faq-stage {
  position: static;
  width: 100%;
  box-sizing: border-box;
  /* mobile */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 1.5rem 2rem;
  min-height: unset;
  margin: 0 auto;
}

.faq-el {
  position: static;
  transform: none;
  width: auto;
  max-width: 100%;
  right: auto;
}

.faq-sticker   { width: 25vw; align-self: flex-start; }
.faq-sticker img { width: 100%; }

.faq-title-bar { background: #fdf6e3; border-radius: 12px; padding: 0.8rem 1.2rem; }
.faq-title     { font-family: var(--font-main); color: #333; white-space: normal; font-size: clamp(1rem, 5vw, 1.4rem); }

.faq-box {
  background:     #000;
  border-radius:  16px;
  display:        flex;
  flex-direction: column;
  /* mobile */
  padding: 2rem 1.5rem;
  gap:     2rem;
  transform: none;
}

.faq-item {
  text-align: center;
  transform: none;
}

.faq-q {
  font-family:   var(--font-main);
  font-weight:   700;
  color:         #f9c254;
  margin-bottom: 0.6rem;
  /* mobile */
  font-size: clamp(0.95rem, 4vw, 1.2rem);
}

.faq-a {
  line-height: 1.8;
  color:       #fff;
  margin:      0 auto;
  /* mobile */
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  max-width: 100%;
}

.faq-seats {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -4px;
}

/* ── TABLET / DESKTOP ── */
@media (min-width: 769px) {
  .faq-stage {
    position: relative;
    display: block;
    padding: 6rem 8% 4rem;
  }

  /* sticker i title-bar: absolutne, dekoracyjne */
  .faq-sticker {
    position: absolute;
    --x:      7%;
    --y:      -1%;
    --rotate: -4deg;
    --scale:  1;
    --z:      2;
    left:      var(--x);
    top:       var(--y);
    width:     12%;
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index:   3;
  }

  .faq-title-bar {
    position: absolute;
    --rotate: 0deg;
    --z:      2;
    top:       2rem;
    left:      18%;
    right:     4%;
    padding:   1rem 2rem;
    transform: rotate(var(--rotate));
    z-index:   var(--z);
  }
  .faq-title { white-space: nowrap; font-size: clamp(1.2rem, 2.5vw, 2rem); }

  /* faq-box: naturalny flow, definiuje wysokość stage'a */
  .faq-box {
    position: static;
    --rotate: -2deg;
    width:    100%;
    padding:  3.5rem 4rem;
    gap:      2.5rem;
    transform: rotate(var(--rotate));
  }

  .faq-item  { transform: rotate(2deg); }
  .faq-q     { font-size: clamp(1rem, 1.8vw, 1.5rem); }
  .faq-a     { font-size: clamp(0.85rem, 1.2vw, 1.05rem); max-width: 560px; }
}


/* desktop */
@media (min-width: 1281px) {
  .faq-stage     { padding: 6rem 8% 4rem; }
  .faq-sticker   { --x: 7%; --y: -1%; --rotate: -4deg; --scale: 1; width: 12%; }
  .faq-title-bar { top: 2rem; left: 18%; right: 4%; padding: 1rem 2rem; }
  .faq-title     { white-space: nowrap; font-size: clamp(1.2rem, 2.5vw, 2rem); }
  .faq-box       { padding: 3.5rem 4rem; gap: 2.5rem; --rotate: -2deg; }
  .faq-item      { transform: rotate(2deg); }
  .faq-q         { font-size: clamp(1rem, 1.8vw, 1.5rem); }
  .faq-a         { font-size: clamp(0.85rem, 1.2vw, 1.05rem); max-width: 560px; }
  .faq-seats     { width: 100%; }
}

/* large */
@media (min-width: 1921px) {
  .faq-stage     { padding: 6rem 8% 4rem; }
  .faq-sticker   { --x: 7%; --y: -1%; --rotate: -4deg; --scale: 1; width: 12%; }
  .faq-title-bar { top: 2rem; left: 18%; right: 4%; padding: 1rem 2rem; }
  .faq-title     { white-space: nowrap; font-size: clamp(1.2rem, 2.5vw, 2rem); }
  .faq-box       { padding: 3.5rem 4rem; gap: 2.5rem; --rotate: -2deg; }
  .faq-item      { transform: rotate(2deg); }
  .faq-q         { font-size: clamp(1rem, 1.8vw, 1.5rem); }
  .faq-a         { font-size: clamp(0.85rem, 1.2vw, 1.05rem); max-width: 560px; }
  .faq-seats     { width: 100%; }
}

/* ============================================================
   FAQ-CONTACT – Kontakt + Social Media
   ============================================================ */
.faq-contact {
  width: 100%;
  background: #000;
  color: #fff;
}

.faq-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  align-items: start;
  /* mobile */
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
}

.faq-contact__question {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.4;
  color: var(--yellow-pale);
  margin-bottom: 1.5rem;
  /* mobile */
  font-size: clamp(1rem, 4vw, 1.3rem);
}

.faq-contact__phone {
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  /* mobile */
  font-size: clamp(1.3rem, 6vw, 1.8rem);
}
.faq-contact__phone:hover { color: #fff; }

.faq-contact__heading {
  font-family: var(--font-main);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  /* mobile */
  font-size: clamp(1.2rem, 5vw, 1.6rem);
}

.faq-contact__text {
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  /* mobile */
  font-size: clamp(0.88rem, 3.5vw, 1rem);
}

.faq-contact__socials     { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--yellow);
  transition: color 0.2s, gap 0.2s;
  font-size: 1rem;
}
.faq-contact__social-link::before { content: '👉'; }
.faq-contact__social-link:hover   { color: #fff; gap: 0.8rem; }

/* tablet */
@media (min-width: 769px) {
  .faq-contact__inner        { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3.5rem 2rem; }
  .faq-contact__question     { font-size: clamp(1.1rem, 2vw, 1.4rem); }
  .faq-contact__phone        { font-size: clamp(1.4rem, 3vw, 2rem); }
  .faq-contact__heading      { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
  .faq-contact__text         { font-size: clamp(0.88rem, 1.5vw, 1rem); }
  .faq-contact__socials      { gap: 0.6rem; }
  .faq-contact__social-link  { font-size: 1rem; }
}

/* desktop */
@media (min-width: 1281px) {
  .faq-contact__inner        { gap: 4rem; padding: 4rem 2rem; max-width: 1280px; }
  .faq-contact__question     { font-size: clamp(1.1rem, 2vw, 1.6rem); }
  .faq-contact__phone        { font-size: clamp(1.4rem, 3vw, 2.2rem); }
  .faq-contact__heading      { font-size: clamp(1.3rem, 2.5vw, 2rem); }
  .faq-contact__text         { font-size: clamp(0.9rem, 1.3vw, 1.05rem); }
  .faq-contact__socials      { gap: 0.8rem; }
  .faq-contact__social-link  { font-size: 1.1rem; }
}

/* large */
@media (min-width: 1921px) {
  .faq-contact__inner        { max-width: 1600px; padding: 5rem 2rem; }
  .faq-contact__question     { font-size: clamp(1.2rem, 2vw, 1.8rem); }
  .faq-contact__phone        { font-size: 2.5rem; }
  .faq-contact__heading      { font-size: 2.2rem; }
  .faq-contact__text         { font-size: 1.1rem; }
  .faq-contact__socials      { gap: 1rem; }
  .faq-contact__social-link  { font-size: 1.2rem; }
}

/* ============================================================
   STARE SEKCJE (dla kompatybilności z duplikatami w HTML)
   ============================================================ */

/* DLA KOGO / BILETY (stara sekcja) */
.dla-kogo-bilety { padding: 64px 0; position: relative; overflow: hidden; }
.dkb-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; z-index: 2; }
.dkb-box         { border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.dkb-box__title  { font-family: var(--font-main); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding-bottom: 12px; border-bottom: 3px solid currentColor; }
.dkb-box--dla-kogo .dkb-box__title { color: var(--teal-dark); }
.dkb-box--bilety  .dkb-box__title  { color: var(--red); }
.dkb-box__content { flex: 1; }
.age-badge        { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: var(--red); border-radius: 50%; margin-bottom: 16px; }
.age-number       { font-family: var(--font-main); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.dkb-box__content p { font-size: 0.98rem; line-height: 1.7; margin-bottom: 12px; }
.price-table      { width: 100%; border-collapse: collapse; }
.price-table tr   { border-bottom: 1px solid var(--cream-dark); }
.price-table td   { padding: 10px 6px; font-size: 0.98rem; }
.price-table .price { font-weight: 700; color: var(--red); text-align: right; white-space: nowrap; }
.dkb-masks        { position: absolute; right: 24px; bottom: -30px; width: 180px; opacity: 0.85; z-index: 1; pointer-events: none; }
@media (max-width: 960px) { .dkb-grid { grid-template-columns: 1fr; } .dkb-masks { display: none; } }

/* TRASA (stara sekcja) */
.trasa              { padding: 64px 0; overflow: hidden; }
.trasa__inner       { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; }
.trasa__heading     { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: 28px; text-transform: uppercase; }
.trasa__left        { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.trasa__frog img    { width: 120px; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.trasa__map img     { width: 100%; }
@media (max-width: 960px) { .trasa__inner { grid-template-columns: 1fr; } .trasa__left { align-items: center; text-align: center; } }

/* BOHATEROWIE stara (zduplikowana sekcja) */
.bohaterowie        { padding: 64px 0 80px; overflow: hidden; position: relative; }
.bohaterowie__header { text-align: center; margin-bottom: 32px; }
.bohaterowie__title { font-family: var(--font-main); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; font-style: italic; color: var(--dark); line-height: 1.05; }
.bohaterowie__sub   { font-size: 1.05rem; font-style: italic; color: var(--text-light); margin-top: 6px; }
.bohaterowie__cart img { display: inline-block; max-width: 960px; width: 100%; }
.bohaterowie__bottom { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; position: relative; }
.bohaterowie__flowers { width: 220px; position: absolute; right: 0; bottom: -24px; pointer-events: none; opacity: 0.8; }
.bohaterowie__sunflower { width: 80px; position: absolute; left: 8%; top: -40px; pointer-events: none; animation: sway 4s ease-in-out infinite; }
@keyframes sway     { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
@media (max-width: 640px) { .bohaterowie__flowers { display: none; } .bohaterowie__title { font-size: 2.6rem; } }

/* TWÓRCY stara (zduplikowana sekcja) */
.tworcy             { padding: 72px 0 56px; position: relative; overflow: hidden; }
.tworcy__title      { font-family: var(--font-main); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); text-align: center; margin-bottom: 48px; }
.tworcy__grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tworcy__person     { text-align: center; }
.tworcy__photo      { width: 200px; height: 240px; margin: 0 auto 20px; border-radius: 12px; overflow: hidden; }
.tworcy__photo img  { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.tworcy__photo--tilt { transform: rotate(3deg); }
.tworcy__name       { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.tworcy__role       { font-size: 0.88rem; color: var(--text-light); }
.tworcy__tractor    { margin-top: 40px; text-align: right; }
.tworcy__tractor img { display: inline-block; width: 260px; }
@media (max-width: 960px) { .tworcy__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .tworcy__grid { grid-template-columns: 1fr; } .tworcy__tractor { display: none; } }

/* AKTUALNOŚCI */
.aktualnosci         { padding: 64px 0; }
.aktualnosci__title  { font-family: var(--font-main); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--dark); text-align: center; margin-bottom: 8px; }
.aktualnosci__dots   { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; }
.aktualnosci__dots span { width: 12px; height: 12px; border-radius: 50%; background: var(--dark); opacity: 0.25; }
.aktualnosci__dots span:first-child { opacity: 1; }
.aktualnosci__grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.news-card           { border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.news-card__header   { display: flex; align-items: center; justify-content: center; padding: 24px; min-height: 160px; }
.news-card__header img { max-height: 110px; width: auto; margin: 0 auto; }
.news-card__body     { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.news-card__title    { font-family: var(--font-main); font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.news-card__body p   { font-size: 0.93rem; line-height: 1.7; color: var(--text-light); flex: 1; }
.news-card__link     { display: inline-block; font-weight: 700; font-size: 0.88rem; color: var(--red); transition: color 0.15s; }
.news-card__link:hover { color: var(--red-dark); }
@media (max-width: 960px) { .aktualnosci__grid { grid-template-columns: 1fr; } }

/* FAQ stara (interactive accordion) */
.faq              { padding: 72px 0; }
.faq__title       { font-family: var(--font-main); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: #fff; text-align: center; margin-bottom: 48px; }
.faq__list        { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 4px; }
.faq__item        { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq__q           { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 20px 8px; cursor: pointer; font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: #fff; text-align: left; gap: 16px; transition: color 0.2s; }
.faq__q:hover     { color: var(--yellow); }
.faq__icon        { flex-shrink: 0; font-size: 1.5rem; font-weight: 300; line-height: 1; transition: transform 0.3s; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a           { padding: 0 8px 20px; }
.faq__a p         { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; }

@media (max-width: 768px) {
.boh-cart {
    width: 100%;
    margin-bottom: -8vw;
    order: 99;
    scale: 1.3;
    padding-top: 2.4em;

            margin-left: 74px;
}

.tw-tworcy-label {
    --x: 2%;
    --y: 36%;
    /* --scale: 4; */
    --rotate: -3deg;
    --z: 6;
    width: 14vw;
    max-width: 180px;
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index: var(--z);
}

.tw-name {
font-size:1.9em;

}


  .pucio-map-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: visible;
    flex-direction: column;
    gap: 3rem;
    padding: 15rem 5vw 4rem;
    padding-bottom: 0;
  }

  .pucio-map-badge-wrap {
    position: relative;
    display: inline-block;
    --wrap-x: 0%;
    --wrap-y: 11%;
    --wrap-scale: 1.7;
    left: var(--wrap-x);
    top: var(--wrap-y);
    transform: scale(var(--wrap-scale));
}
.pucio-map-char {
    --char-x: 0%;
    --char-y: -10%;
    --char-w: 32%;
    position: absolute;
    left: var(--char-x);
    top: var(--char-y);
    width: var(--char-w);
    height: auto;
    pointer-events: none;
    z-index: 5;
}
.boh-stage {
    position: static;
    height: auto;
    max-height: none;
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 0;
    gap: 1.5rem;
    padding-top: 0;
}
.tw-top {
    padding-top: 5rem;

}

.pucio-map-badge {

    width: 51vw;
    height: 51vw;

}
.pucio-map-right {
    width: 100vw;
    margin-top: -50px;
    --x: -45px;
    position: relative;
    z-index: 4;
    left: var(--x);
}

}


@media (min-width: 1921px) {
    .pucio-map-badge {
        width: 33vw;
        height: 20vw;
        font-size: 1.6vw;
        padding: 1.5vw;
    }

        .pucio-map-right {
        width: 58vw;
        padding-right: 6vw;
    }
}