/* ============================================================
   all4cups — warstwa designu (treść i zdjęcia bez zmian)
   Paleta z logo: granat + pomarańcz. Jasna, premium, przemysłowa.
   ============================================================ */

:root {
  --navy: #10225c;
  --navy-700: #1b3486;
  --navy-500: #2b4bb8;
  --orange: #f7941d;
  --orange-600: #e07f0a;
  --orange-soft: #ffb85c;

  --ink: #101426;
  --body: #4a5163;
  --muted: #737c91;

  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-tint: #eef1fa;
  --line: #e3e7f0;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --max: 78rem;
  --radius: 18px;
  --radius-lg: 26px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 10px rgba(16, 34, 92, 0.06);
  --shadow: 0 18px 44px rgba(16, 34, 92, 0.10);
  --shadow-lg: 0 34px 80px rgba(16, 34, 92, 0.16);

  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-head: "Sora", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--soft { background: var(--bg-soft); }

/* ——————————————————————— HEADER ——————————————————————— */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.hdr.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.hdr__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.3s ease;
}
.hdr.is-stuck .hdr__in { padding-block: 0.6rem; }
.hdr__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.hdr__logo img {
  height: 40px;
  width: auto;
  max-width: min(48vw, 200px);
  object-fit: contain;
  object-position: left center;
  transition: height 0.3s ease;
}
.hdr.is-stuck .hdr__logo img { height: 34px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav a:hover { color: var(--navy-500); background: var(--bg-tint); }
.nav a.is-active { color: var(--navy); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 16px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--orange);
  transform: translateX(-50%);
}
.nav__cta {
  margin-left: 0.5rem;
  padding: 0.62rem 1.25rem !important;
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(16, 34, 92, 0.22);
}
.nav__cta:hover { background: var(--navy-700) !important; transform: translateY(-1px); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: var(--ink); margin: 3.5px auto;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-open .burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ——————————————————————— BUTTONS ——————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border: 0;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  color: #1a1200;
  box-shadow: 0 12px 30px rgba(247, 148, 29, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(247, 148, 29, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.btn--light:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ——————————————————————— HERO ——————————————————————— */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(8.5rem, 15vh, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(60% 55% at 88% 0%, rgba(43, 75, 184, 0.13), transparent 62%),
    radial-gradient(48% 48% at 4% 92%, rgba(247, 148, 29, 0.14), transparent 64%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  margin-bottom: 1.6rem;
  border-radius: 100px;
  background: var(--bg-tint);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.55);
  animation: ping 2.4s infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(247, 148, 29, 0); } 100% { box-shadow: 0 0 0 0 rgba(247, 148, 29, 0); } }

.hero__brand {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: var(--orange-600);
  margin: 0 0 0.7rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  margin-bottom: 1.5rem;
}
.hero h1 .hl {
  position: relative;
  color: var(--navy);
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.3em;
  background: linear-gradient(90deg, rgba(247, 148, 29, 0.32), rgba(247, 148, 29, 0.1));
  border-radius: 3px;
  z-index: -1;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--body);
  max-width: 34rem;
  margin: 0 0 1rem;
}
.hero__note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 2.2rem;
  padding: 0.85rem 1.15rem;
  border-left: 3px solid var(--orange);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  max-width: 32rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* kolaż zdjęć w hero — te same zdjęcia co w treści */
.hero__art { position: relative; }
.hero__art-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero__art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__art-sub {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: #fff;
}
.hero__art-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -4%;
  top: 8%;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.1rem;
  animation: float 6s ease-in-out infinite;
}
.hero__badge b { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); line-height: 1; }
.hero__badge span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ——————————————————————— SECTION HEAD ——————————————————————— */
.shead { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead__tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.shead h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.shead p { margin: 1rem 0 0; font-size: 1.05rem; color: var(--body); }

/* ——————————————————————— TECHNOLOGIE ——————————————————————— */
.tech { display: grid; gap: clamp(3rem, 6vw, 5.5rem); }

.trow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.trow--flip .trow__media { order: -1; }
.trow--solo { grid-template-columns: 1fr; }

.trow__body { max-width: 34rem; }
.trow__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(16, 34, 92, 0.22);
}
.trow h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  margin-bottom: 0.85rem;
}
.trow__sub {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: rgba(247, 148, 29, 0.13);
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.trow p { margin: 0 0 0.9rem; }
.trow p:last-child { margin-bottom: 0; }
.trow__accent {
  font-weight: 700;
  color: var(--ink);
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
}

.trow__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}
.trow__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.trow__media:hover img { transform: scale(1.045); }

/* wariant bez zdjęcia — mocny blok typograficzny */
.trow--solo .trow__body { max-width: none; }
.tcard {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, #1c2f74 55%, #24397f 100%);
  color: #dfe4f5;
  box-shadow: var(--shadow-lg);
}
.tcard::after {
  content: "";
  position: absolute;
  right: -12%; top: -35%;
  width: 55%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.28), transparent 68%);
  pointer-events: none;
}
.tcard .trow__num { background: var(--orange); color: #1a1200; box-shadow: 0 10px 24px rgba(247, 148, 29, 0.3); }
.tcard h3 { color: #fff; }
.tcard p { color: rgba(223, 228, 245, 0.86); position: relative; z-index: 1; }
.tcard .trow__accent { color: #fff; border-left-color: var(--orange); }
.tcard__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.tcard__facts { display: grid; gap: 0.75rem; position: relative; z-index: 1; }
.tcard__facts div {
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* IML — układ dwóch zdjęć */
.iml__stack { display: grid; gap: 1.15rem; }
.iml__stack .trow__media { aspect-ratio: 16 / 10; }

/* ——————————————————————— CTA BAND ——————————————————————— */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(2.75rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--navy) 0%, #182a6b 50%, #21356f 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta::before {
  width: 46%; aspect-ratio: 1;
  left: -14%; bottom: -46%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.35), transparent 66%);
}
.cta::after {
  width: 40%; aspect-ratio: 1;
  right: -12%; top: -40%;
  background: radial-gradient(circle, rgba(93, 130, 255, 0.32), transparent 68%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.cta__hi {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 2rem;
  color: #fff;
}
.cta__hi .u { color: var(--orange-soft); }

/* ——————————————————————— FORM ——————————————————————— */
.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-side h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
.form-side p { margin: 0 0 1.5rem; }
.form-side__list { display: grid; gap: 0.9rem; margin-top: 1.75rem; }
.form-side__list div {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-weight: 600; color: var(--ink); font-size: 0.97rem;
}
.form-side__list i {
  flex: none;
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(247, 148, 29, 0.15);
  color: var(--orange-600);
  font-style: normal; font-weight: 800; font-size: 0.85rem;
}

.form {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus, .field textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(43, 75, 184, 0.12);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); flex: none; }
.consent span {
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.form__note { margin: 0; font-size: 0.85rem; color: var(--muted); }
.form .btn { justify-content: center; }

/* ——————————————————————— FOOTER ——————————————————————— */
.ftr {
  background: #0b1740;
  color: rgba(226, 231, 246, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem;
}
.ftr__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ftr__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  line-height: 0;
}
.ftr__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.ftr h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.ftr p { margin: 0 0 0.35rem; }
.ftr a { color: rgba(226, 231, 246, 0.82); text-decoration: none; transition: color 0.22s ease; }
.ftr a:hover { color: var(--orange-soft); }
.ftr__links { display: grid; gap: 0.6rem; }
.ftr__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

/* ——————————————————————— REVEAL ——————————————————————— */
[data-rv] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-rv].in { opacity: 1; transform: none; }
[data-rv].instant { transition: none !important; }
[data-rv-d="1"] { transition-delay: 0.08s; }
[data-rv-d="2"] { transition-delay: 0.16s; }
[data-rv-d="3"] { transition-delay: 0.24s; }

/* ——————————————————————— RESPONSYWNOŚĆ ——————————————————————— */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { margin-top: 1rem; max-width: 34rem; }
  .hero__art-sub { width: 42%; right: 0; bottom: -8%; }
  .hero__badge { left: 0; }
  .trow, .tcard__grid, .form-grid { grid-template-columns: 1fr; }
  .trow--flip .trow__media { order: 0; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .burger { display: grid; }
  .nav {
    position: fixed;
    inset: 64px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 1rem var(--pad) 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.3s var(--ease), visibility 0.25s;
  }
  .nav.is-open,
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 0.85rem 1rem; border-radius: 12px; font-size: 1rem; }
  .nav a.is-active::after { display: none; }
  .nav__cta { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
  .ftr__grid { grid-template-columns: 1fr; }
  .hero__art-sub, .hero__badge { position: static; width: auto; margin-top: 1rem; border: 0; }
  .hero__badge { display: inline-grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-rv] { opacity: 1; transform: none; transition: none; }
  .hero__badge, .eyebrow::before { animation: none; }
  .trow__media:hover img { transform: none; }
}

/* ——————————————————————— STRONA PRAWNA (polityka) ——————————————————————— */
.legal-hero {
  padding-top: clamp(8rem, 14vh, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(55% 60% at 85% 0%, rgba(43, 75, 184, 0.12), transparent 62%),
    var(--bg);
}
.legal-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 0.75rem; }
.legal-hero p { margin: 0; color: var(--body); font-size: 1.05rem; }
.legal { max-width: 52rem; margin: 0 auto; }
.legal h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: 2.5rem 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal p { margin: 0 0 0.9rem; }
.legal ul, .legal ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
.legal li { margin: 0.35rem 0; }
.legal strong { color: var(--ink); }
.legal a { color: var(--navy-500); font-weight: 600; word-break: break-word; }
.legal__meta {
  margin: 0 0 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  line-height: 1.75;
}
.legal__updated {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——————————————————————— PODSTRONY: baner ——————————————————————— */
.phero {
  padding-top: clamp(8rem, 14vh, 10.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(58% 60% at 88% 0%, rgba(43, 75, 184, 0.13), transparent 62%),
    radial-gradient(42% 45% at 2% 100%, rgba(247, 148, 29, 0.12), transparent 66%),
    var(--bg);
}
.phero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 0.9rem; max-width: 22ch; }
.phero__lead { margin: 0; max-width: 46rem; font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--body); }

/* akapit wyróżniony */
.lead-strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
}
.center-narrow { max-width: 44rem; margin-inline: auto; text-align: center; }

/* ——————————————————————— karty treści (SUP) ——————————————————————— */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pcard {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pcard h2 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 1.1rem; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--body);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 1.15rem; height: 0.6rem;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.note-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.note-row p {
  margin: 0;
  padding: 1.15rem 1.35rem;
  background: var(--bg-tint);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 600;
}

/* oś czasu */
.tl { list-style: none; margin: 0; padding: 0 0 0 1.75rem; position: relative; display: grid; gap: 2rem; }
.tl::before {
  content: "";
  position: absolute;
  left: 0.32rem; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(var(--orange), rgba(247, 148, 29, 0.15));
}
.tl__i { position: relative; }
.tl__i::before {
  content: "";
  position: absolute;
  left: -1.75rem; top: 0.35rem;
  width: 0.85rem; height: 0.85rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
}
.tl__y {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.tl__i p { margin: 0 0 0.6rem; }

/* ——————————————————————— galeria 3 ——————————————————————— */
.gal3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gal3__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.gal3__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gal3__item:hover img { transform: scale(1.05); }

/* ——————————————————————— karty oferty ——————————————————————— */
.ocards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.ocard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.ocard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ocard__img { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.ocard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ocard:hover .ocard__img img { transform: scale(1.05); }
.ocard__body { padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.ocard__n {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
}
.ocard__body p { margin: 0; color: var(--ink); font-weight: 600; line-height: 1.5; }

.more { text-align: center; max-width: 46rem; margin-inline: auto; }
.more__lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 0.9rem;
}
.more__q { margin: 0 0 1.75rem; font-size: 1.05rem; }

/* ——————————————————————— kontakt ——————————————————————— */
.dpw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.dpw span {
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  background: var(--bg-tint);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.contact-box {
  margin: 1.5rem 0;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
}
.contact-box h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-box p { margin: 0 0 0.2rem; }
.social-lead { margin: 0 0 0.85rem; font-weight: 600; color: var(--ink); }
.social { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social a {
  padding: 0.6rem 1.15rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.social a:hover { border-color: var(--navy); color: var(--navy-500); transform: translateY(-2px); }

/* stopka: 4 kolumny */
.ftr__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }

@media (max-width: 1000px) {
  .duo, .note-row, .ocards, .gal3 { grid-template-columns: 1fr 1fr; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .duo, .note-row, .ocards, .gal3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════ SEZON 2027 — wyróżnienie ═══════════════════════ */
.season {
  position: relative;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(2.25rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d70 52%, #23387a 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.season::before, .season::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.season::before {
  width: 44%; aspect-ratio: 1; right: -10%; top: -42%;
  background: radial-gradient(circle, rgba(247,148,29,0.42), transparent 66%);
}
.season::after {
  width: 38%; aspect-ratio: 1; left: -12%; bottom: -44%;
  background: radial-gradient(circle, rgba(93,130,255,0.34), transparent 68%);
}
.season > * { position: relative; z-index: 1; }
.season__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.season__tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 1.05rem;
  margin-bottom: 1.1rem;
  border-radius: 100px;
  background: var(--orange);
  color: #1a1200;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.season h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.season h2 .u { color: var(--orange-soft); }
.season p { color: rgba(232,236,250,0.9); font-size: clamp(1rem, 1.5vw, 1.13rem); margin: 0 0 1.5rem; max-width: 40rem; }
.season__chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.9rem; }
.season__chips span {
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 600; font-size: 0.92rem;
}
.season__year {
  display: grid; place-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
}
.season__year b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.season__year span { display: block; margin-top: 0.5rem; font-size: 0.82rem; color: rgba(232,236,250,0.8); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ═══════════════════════ TARGI EURO GASTRO ═══════════════════════ */
.fair {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.fair__date {
  text-align: center;
  padding-right: clamp(1.25rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line);
}
.fair__date b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.fair__date span {
  display: block; margin-top: 0.35rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-600);
}
.fair__body h2 { font-size: clamp(1.2rem, 2.3vw, 1.75rem); margin-bottom: 0.5rem; }
.fair__body p { margin: 0; color: var(--body); }
.fair .btn { white-space: nowrap; }

/* ═══════════════════════ FAQ — akordeon ═══════════════════════ */
.faq { max-width: 54rem; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq__i {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__i.is-open { border-color: rgba(247,148,29,0.5); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 1.4rem;
  background: none; border: 0;
  font-family: var(--font-head);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  font-weight: 700; color: var(--ink);
  text-align: left; cursor: pointer;
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--navy-500); }
.faq__ico {
  flex: none;
  position: relative;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--bg-tint);
  transition: background 0.25s ease, transform 0.3s var(--ease);
}
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--navy);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: opacity 0.25s ease, background 0.25s ease;
}
.faq__ico::before { width: 12px; height: 2px; }
.faq__ico::after  { width: 2px; height: 12px; }
.faq__i.is-open .faq__ico { background: var(--orange); transform: rotate(180deg); }
.faq__i.is-open .faq__ico::before { background: #1a1200; }
.faq__i.is-open .faq__ico::after { opacity: 0; }
.faq__a { height: 0; overflow: hidden; transition: height 0.32s var(--ease); }
.faq__a > div { padding: 0 1.4rem 1.35rem; color: var(--body); }
.faq__a p { margin: 0 0 0.7rem; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a strong { color: var(--ink); }
.faq__a ul { margin: 0.2rem 0 0.7rem; padding-left: 1.2rem; }
.faq__a li { margin: 0.28rem 0; }

@media (max-width: 900px) {
  .season__grid { grid-template-columns: 1fr; }
  .fair { grid-template-columns: 1fr; text-align: center; }
  .fair__date { padding-right: 0; padding-bottom: 1.1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .fair__date b { display: inline; }
  .fair__date span { display: inline; margin-left: 0.5rem; }
  .fair .btn { justify-self: center; }
}

/* ============================================================
   TORBY TERMICZNE
   ============================================================ */

/* — galeria kolorystyk — */
.bags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.bag { margin: 0; }
.bag__art {
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bag:hover .bag__art { transform: translateY(-6px); box-shadow: var(--shadow); }
.bag__svg { width: 100%; max-width: 15rem; height: auto; display: block; }
.bag__cap {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-inline: 0.25rem;
}
.bag__cap b { font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); }
.bag__cap span { font-size: 0.85rem; color: var(--muted); }

.bags__note {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  padding: 1.1rem 1.35rem;
  border-left: 4px solid var(--orange);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* — trzy filary personalizacji — */
.feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.6vw, 2.15rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.fcard__n {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}
.fcard h3 { margin: 0 0 0.7rem; font-size: 1.25rem; }
.fcard p { margin: 0; color: var(--body); line-height: 1.7; }
.fcard__x {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--navy) !important;
  font-size: 0.95rem;
}

/* — dowolny kształt — */
.shapes {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-700) 62%, #24409c 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.75rem);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.shapes::after {
  content: "";
  position: absolute;
  inset: auto -12% -55% auto;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.28), transparent 66%);
  pointer-events: none;
}
.shapes__head { position: relative; max-width: 46rem; }
.shapes__tag {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--orange);
  color: #10225c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.shapes h2 { margin: 0 0 0.9rem; font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: #fff; }
.shapes h2 .u { color: var(--orange-soft); }
.shapes__head p { margin: 0; color: rgba(255, 255, 255, 0.82); line-height: 1.75; font-size: 1.05rem; }

.shapes__row {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.65rem, 1.4vw, 1.1rem);
}
.shape {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.1rem 0.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  color: var(--orange-soft);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.shape:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.14); }
.shape svg { width: 2.6rem; height: 2.6rem; }
.shape span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

/* — proces — */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
  counter-reset: none;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step b {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.step h3 { margin: 0.55rem 0 0.5rem; font-size: 1.1rem; }
.step p { margin: 0; color: var(--body); font-size: 0.95rem; line-height: 1.65; }

/* — zajawka na stronie głównej — */
.bteaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.bteaser__art {
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
}
.bteaser__art .bag__svg { max-width: 13rem; }
.bteaser__body h2 { margin: 0.85rem 0 0.75rem; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.bteaser__body p { margin: 0 0 1.5rem; color: var(--body); line-height: 1.75; font-size: 1.05rem; }

/* ============================================================
   BANER COOKIE
   ============================================================ */

.btn--sm { padding: 0.72rem 1.25rem; font-size: 0.9rem; }

.cbar {
  position: fixed;
  left: 50%;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 200;
  width: min(60rem, calc(100vw - 1.5rem));
  transform: translate(-50%, calc(100% + 2rem));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
}
.cbar[hidden] { display: none; }
.cbar.is-on { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

.cbar__in {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}
.cbar__txt b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.cbar__txt p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--body);
}
.cbar__txt a { color: var(--navy); font-weight: 700; text-decoration: underline; }
.cbar__txt a:hover { color: var(--orange-600); }
.cbar__btns { display: flex; gap: 0.6rem; flex-shrink: 0; }

.ftr__bottom-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.ftr__cookie {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  opacity: 0.75;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ftr__cookie:hover { opacity: 1; color: var(--orange); }

/* ============================================================
   RESPONSYWNOŚĆ — torby + cookie
   ============================================================ */

@media (max-width: 1000px) {
  .bags { grid-template-columns: repeat(3, 1fr); }
  .feat { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .shapes__row { grid-template-columns: repeat(3, 1fr); }
  .bteaser { grid-template-columns: 1fr; }
  .bteaser__art { max-width: 20rem; margin-inline: auto; }
}

@media (max-width: 700px) {
  .bags { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .shapes__row { grid-template-columns: repeat(2, 1fr); }

  .cbar { width: calc(100vw - 1.25rem); }
  .cbar__in { grid-template-columns: 1fr; }
  .cbar__btns { flex-direction: column-reverse; }
  .cbar__btns .btn { width: 100%; justify-content: center; }
  .ftr__bottom-links { gap: 0.9rem; }
}

/* ============================================================
   PAS FESTIWALOWY — pełna szerokość, zdjęcie w tle
   ============================================================ */

.showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(26rem, 52vw, 40rem);
  padding-block: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.showcase__img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
/* przyciemnienie od dołu — tekst musi być czytelny niezależnie od kadru */
.showcase__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(8, 16, 44, 0.92) 0%, rgba(8, 16, 44, 0.72) 32%, rgba(8, 16, 44, 0.18) 62%, rgba(8, 16, 44, 0.05) 100%),
    linear-gradient(to right, rgba(16, 34, 92, 0.55), transparent 60%);
}
.showcase__in {
  position: relative;
  max-width: var(--max);
  width: 100%;
}
.showcase__tag {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--orange);
  color: #10225c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.showcase h2 {
  margin: 0 0 0.85rem;
  max-width: 20ch;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.showcase h2 .u { color: var(--orange-soft); }
.showcase__in p {
  margin: 0 0 1.75rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

@media (max-width: 700px) {
  .showcase { min-height: 30rem; }
  .showcase__img img { object-position: center 38%; }
  .showcase__veil {
    background: linear-gradient(to top, rgba(8, 16, 44, 0.95) 0%, rgba(8, 16, 44, 0.8) 42%, rgba(8, 16, 44, 0.25) 78%, rgba(8, 16, 44, 0.08) 100%);
  }
  .showcase h2 { max-width: none; }
}

/* — pas festiwalowy jako pierwszy ekran strony głównej — */
.showcase {
  min-height: clamp(30rem, 68vh, 46rem);
  margin-top: 0;
}
.showcase__h {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem) !important;
  letter-spacing: -0.02em;
}
@media (max-width: 700px) {
  .showcase { min-height: 34rem; }
}

/* — „tysiące rąk” — mocne wyróżnienie na zdjęciu — */
.showcase__h { max-width: 16ch; }
.showcase__h .u {
  display: block;
  width: fit-content;
  position: relative;
  font-size: 1.14em;
  line-height: 1.02;
  padding-bottom: 0.1em;
  /* gradient na literach + poświata, żeby odkleiły się od zdjęcia */
  color: var(--orange);
  background: linear-gradient(96deg, #ffc06a 0%, #f7941d 46%, #ff7412 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 6px 26px rgba(247, 148, 29, 0.5))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}
/* podkreślenie dorysowujące się od lewej */
.showcase__h .u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.085em;
  min-height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft) 70%, rgba(255, 184, 92, 0.25));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.95s var(--ease) 0.4s;
}
.showcase__h.in .u::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .showcase__h .u::after { transition: none; transform: scaleX(1); }
}
