/* ============ SECTIONS — DRUK ============ */

/* ================= 01 · OKŁADKA — pin separacji ================= */
.s-hero { background: var(--cream); }
.s-hero__stage {
  display: flex;
  flex-direction: column;
  height: 100svh;
  padding: calc(56px + 16px) var(--gutter) 18px; /* pod nav */
  gap: 14px;
}

.s-hero__masthead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: var(--rule-bold) var(--ink);
  color: var(--ink-soft);
}

.s-hero__press {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

/* Prasa — kontener separacji barw */
.sep {
  position: relative;
  isolation: isolate; /* ogranicza zasięg multiply */
  overflow: clip;     /* misregistration zostaje w ramie arkusza */
  height: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  justify-self: end;
  background: var(--cream);
  border: var(--rule-bold) var(--ink);
}
.sep__plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  will-change: transform;
}
.sep__flat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
/* przed startem JS (i na static) — pokazuj złożony plakat */
html[data-tier="static"] .sep__flat { opacity: 1; }
html[data-tier="static"] .sep__plate { display: none; }

.s-hero__side { min-width: 0; }
.s-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-title);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.s-hero__lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
}
.s-hero__lead strong { color: var(--ink); }
.s-hero__reg {
  margin-top: 18px;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.s-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.s-hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: var(--rule) var(--ink);
  color: var(--ink-mute);
}
.s-hero__cue { color: var(--pink); }

/* ================= Wspólne ================= */
.s-noc, .s-ryc, .s-spec, .s-listy, .s-kiosk {
  padding: var(--block-pad) var(--gutter);
}
.s-noc__title, .s-ryc__title, .s-spec__title, .s-listy__title, .s-kiosk__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

/* ================= 02 · FOTOREPORTAŻ — noc ================= */
.s-noc {
  background: var(--navy);
  color: var(--cream);
}
.s-noc__title em { color: var(--yellow); }
.s-noc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(28px, 4.5vw, 72px);
  margin-top: clamp(36px, 4.5vw, 64px);
  align-items: start;
}
.s-noc__photo {
  background: var(--cream);
  padding: 14px 14px 12px;
  box-shadow: 10px 10px 0 rgba(5, 3, 15, .45);
}
.s-noc__photo img { width: 100%; aspect-ratio: 7 / 5; object-fit: cover; }
.s-noc__photo figcaption { margin-top: 10px; color: var(--ink-mute); }
.s-noc__body { color: var(--cream-soft); margin-bottom: 18px; font-size: 17px; }
.s-noc__body strong { color: var(--cream); }
.s-noc__facts {
  list-style: none;
  margin-top: 26px;
}
.s-noc__facts li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 247, 230, .18);
  color: var(--cream-soft);
}
.s-noc__facts li:first-child { border-top: 1px solid rgba(255, 247, 230, .18); }
.s-noc__facts strong { color: var(--yellow); }
.s-noc__clip {
  position: absolute;
  right: clamp(8px, 4vw, 80px);
  bottom: -60px;
  width: clamp(140px, 16vw, 240px);
  rotate: -5deg;
  border: var(--rule) var(--ink-faint);
  box-shadow: 6px 6px 0 rgba(5, 3, 15, .35);
  z-index: 2;
}
.s-noc { position: relative; }

/* ================= 03 · RYCINY — sticky arkusze ================= */
.s-ryc { padding: 0; }
.s-ryc__intro {
  padding: var(--block-pad) var(--gutter) clamp(40px, 5vw, 72px);
  max-width: 980px;
}
.s-ryc__lead {
  margin-top: 20px;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 64ch;
}

.sheet {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
  padding: calc(56px + 24px) var(--gutter) 48px;
  border-top: var(--rule-bold) var(--ink);
  background-image: var(--grain), linear-gradient(var(--cream), var(--cream));
  background-blend-mode: multiply, normal;
}
.sheet:nth-of-type(2) { background-image: var(--grain), linear-gradient(#FFEED1, #FFEED1); }
.sheet:nth-of-type(3) { background-image: var(--grain), linear-gradient(#FFE4B8, #FFE4B8); }

.sheet__fig {
  justify-self: end;
  width: min(100%, 460px);
  background: var(--cream);
  border: var(--rule) var(--ink);
  padding: 18px;
}
.sheet__fig img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.sheet__fig figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--ink-mute);
}
.sheet__num { color: var(--pink); margin-bottom: 14px; }
.sheet__text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sheet__text > p { color: var(--ink-soft); max-width: 58ch; }
.sheet__text strong { color: var(--ink); }
.sheet__foot { margin-top: 22px; color: var(--ink-mute); }

/* ================= 04 · SPECYFIKACJA ================= */
.s-spec { background: var(--cream); border-top: var(--rule-bold) var(--ink); }
.s-spec__title em { color: var(--pink); }
.s-spec__lead { margin-top: 16px; color: var(--ink-soft); font-size: var(--fs-lead); }
.s-spec__table { margin-top: clamp(32px, 4vw, 56px); }

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .7fr) minmax(0, 1.5fr);
  gap: clamp(16px, 2.5vw, 48px);
  padding: 18px 0;
  border-bottom: var(--rule) var(--ink-faint);
  align-items: baseline;
}
.spec-row--head { color: var(--ink-mute); border-bottom: var(--rule) var(--ink); }
.spec-row strong { font-weight: 600; }
.spec-row em {
  display: block;
  color: var(--ink-mute);
  margin-top: 4px;
}
.swatch {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--ink);
  margin-right: 10px;
  vertical-align: baseline;
}
.spec-row__dose {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.spec-row--hot .spec-row__dose { color: var(--pink); }
.spec-row > span:last-child { color: var(--ink-soft); font-size: 15px; }
.s-spec__micro { margin-top: 22px; color: var(--ink-mute); }

/* ================= 05 · PAS ================= */
.s-pas { border-top: var(--rule-bold) var(--ink); }
.s-pas__cal { display: flex; }
.s-pas__cal i { flex: 1; height: 22px; border-right: 1px solid var(--cream); }
.s-pas__band {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(12px, 1.4vw, 20px) 0;
  border-top: var(--rule-bold) var(--ink);
  border-bottom: var(--rule-bold) var(--ink);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.01em;
  user-select: none;
}
.marquee__track { display: inline-block; will-change: transform; }
.marquee__track span { display: inline-block; padding-right: .3em; }

/* ================= 06 · LISTY DO REDAKCJI ================= */
.s-listy {
  background: var(--navy);
  color: var(--cream);
  padding-bottom: calc(var(--block-pad) + 40px);
}
.s-listy__title em { color: var(--yellow); }
.s-listy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  margin-top: clamp(44px, 5vw, 72px);
}
.list {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(22px, 2.4vw, 36px);
  box-shadow: 8px 8px 0 rgba(5, 3, 15, .4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list__stars { color: var(--pink); letter-spacing: .28em; font-size: 17px; }
.list blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.3;
  flex: 1;
}
.list__by { color: var(--ink-mute); }
.list--ghost { background: #FFEED1; border: 1px dashed var(--ink-mute); }

/* ================= 07 · KIOSK ================= */
.s-kiosk { background: var(--cream); }
.s-kiosk__head { text-align: center; max-width: 860px; margin: 0 auto; }
.s-kiosk__sub { margin-top: 16px; font-size: var(--fs-lead); color: var(--ink-soft); }

.s-kiosk__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4.5vw, 72px);
  margin-top: clamp(44px, 5vw, 72px);
  align-items: center;
}
.s-kiosk__photo {
  position: relative;
  background: var(--cream);
  border: var(--rule) var(--ink);
  padding: 14px 14px 12px;
  box-shadow: 10px 10px 0 var(--ink);
}
.s-kiosk__photo > img:not(.s-kiosk__bottle) { width: 100%; aspect-ratio: 7 / 5; object-fit: cover; }
.s-kiosk__photo figcaption { margin-top: 10px; color: var(--ink-mute); }
.s-kiosk__bottle {
  position: absolute;
  right: -52px;
  bottom: -46px;
  width: clamp(160px, 15vw, 230px);
  rotate: 4deg;
  filter: drop-shadow(10px 10px 0 rgba(27, 19, 70, .85));
  pointer-events: none;
}

.packs { display: flex; flex-direction: column; gap: 14px; }
.pack {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "tag  tag   flag"
    "qty  price btn"
    "qty  unit  btn";
  column-gap: clamp(16px, 2vw, 32px);
  align-items: center;
  border: var(--rule-bold) var(--ink);
  padding: 18px clamp(18px, 2.2vw, 32px);
  background: var(--cream);
}
.pack--hot {
  background: #FFEED1;
  box-shadow: 6px 6px 0 var(--pink);
}
.pack__flag { grid-area: flag; color: var(--pink); justify-self: end; }
.pack__tag { grid-area: tag; color: var(--ink-mute); margin-bottom: 8px; }
.pack__qty {
  grid-area: qty;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: .9;
}
.pack__qty span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.pack__price {
  grid-area: price;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 30px);
}
.pack__unit { grid-area: unit; color: var(--ink-mute); margin-top: 4px; }
.pack__btn { grid-area: btn; justify-self: end; }

.s-kiosk__badges {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  list-style: none;
  margin-top: clamp(36px, 4vw, 56px);
  color: var(--ink-soft);
}
.s-kiosk__badges li::before { content: "✓ "; color: var(--pink); }
.s-kiosk__micro { text-align: center; margin-top: 14px; color: var(--ink-mute); }

/* ================= 08 · KOLOFON ================= */
.kolofon {
  background: var(--navy);
  color: var(--cream);
  padding: var(--block-pad) var(--gutter) clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: var(--rule-bold) var(--ink);
}
.kolofon__ryc {
  width: 130px;
  border: var(--rule) var(--cream-mute);
  margin-bottom: 24px;
}
.kolofon__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 72px);
  letter-spacing: -.02em;
  line-height: .95;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--pink), -2px -1px 0 var(--yellow);
}
.kolofon__tag { margin-top: 14px; color: var(--cream-mute); }

.kolofon__roll {
  margin-top: clamp(36px, 4.5vw, 56px);
  width: min(760px, 100%);
}
.kolofon__roll > div {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 247, 230, .16);
}
.kolofon__roll dt { text-align: right; color: var(--cream-mute); }
.kolofon__roll dd { text-align: left; color: var(--cream-soft); }

.kolofon .inkbar { margin-top: clamp(30px, 3.5vw, 44px); }
.kolofon .inkbar i { border-color: var(--cream-mute); }

.kolofon__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: clamp(30px, 3.5vw, 44px);
  color: var(--cream-mute);
}
.kolofon__links a:hover { color: var(--yellow); }

.kolofon__disclaimer {
  margin-top: clamp(28px, 3.5vw, 40px);
  max-width: 72ch;
  font-size: 13px;
  color: var(--cream-mute);
}
.kolofon__copy { margin-top: 18px; color: rgba(255, 247, 230, .35); }

/* ================= Mobile ================= */
@media (max-width: 899px) {
  .nav__links { display: none; }

  .s-hero__stage { height: auto; min-height: 100svh; padding-bottom: 36px; }
  .s-hero__masthead { flex-wrap: wrap; gap: 6px 16px; }
  .s-hero__masthead span:last-child { display: none; }
  .s-hero__press { grid-template-columns: 1fr; gap: 28px; }
  .sep { height: auto; width: min(78vw, 420px); justify-self: center; }
  .s-hero__side { text-align: left; }
  .s-hero__foot { flex-wrap: wrap; gap: 10px; }

  .s-noc__grid, .s-kiosk__grid { grid-template-columns: 1fr; }
  .s-noc__clip { display: none; }

  .sheet { grid-template-columns: 1fr; gap: 22px; padding-top: calc(56px + 18px); align-content: start; }
  .sheet__fig { justify-self: center; width: min(100%, 360px); padding: 12px; }

  .spec-row { grid-template-columns: 1fr; gap: 6px; }
  .spec-row--head span:not(:first-child) { display: none; }

  .s-listy__grid { grid-template-columns: 1fr; }

  .s-kiosk__bottle { right: -10px; bottom: -40px; width: 130px; }
  .pack {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "tag   flag"
      "qty   qty"
      "price price"
      "unit  unit"
      "btn   btn";
  }
  .pack__btn { justify-self: stretch; margin-top: 12px; }
  .pack__btn.btn { width: 100%; }

  .kolofon__roll > div { grid-template-columns: 1fr; gap: 2px; }
  .kolofon__roll dt, .kolofon__roll dd { text-align: center; }
}
