/* STREFA ARTYKUŁÓW MEBLOWYCH — strefastolarza.pl */
:root {
  --orange: #ef7c21;
  --orange-deep: #d96a12;
  --orange-soft: #fff3e8;
  --ink: #1f1f1f;
  --charcoal: #2d2d2d;
  --slate: #4a4a4a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --fog: #f4f4f4;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --container: 1180px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--fog {
  background: var(--fog);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--soft {
  background: var(--fog);
  color: var(--ink);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.header-partners {
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-partners__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.85rem;
  padding-block: 0.35rem;
}

.header-partners__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
  min-width: 0;
}

.header-partners__address,
.header-partners__hours {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}

.header-partners__hours {
  letter-spacing: 0.02em;
}

.header-partners__phone {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange);
  white-space: nowrap;
}

.header-partners__phone:hover {
  color: var(--orange-deep);
}

.header-partners__logos {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.15rem;
  padding: 0.25rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.header-partner:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.header-partner img {
  height: 1.35rem;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.header-partner--strefaplyt {
  height: 2.35rem;
  padding: 0.15rem 0.55rem;
}

.header-partner--strefaplyt img {
  height: 1.95rem;
  max-width: 130px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.1rem;
  padding-block: 0.45rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__logo {
  height: 4.15rem;
  width: auto;
  max-width: min(380px, 62vw);
  object-fit: contain;
}

.brand__logo--footer {
  height: 3.8rem;
  max-width: 340px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  display: block;
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--orange);
}

.brand__sub {
  margin-top: 0.22rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 28rem;
}

.footer-domain {
  margin: 0.45rem 0 0;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.nav a:hover,
.nav a.is-active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(20, 20, 20, 0.88) 0%, rgba(20, 20, 20, 0.62) 48%, rgba(20, 20, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 20, 20, 0.55) 0%, transparent 42%);
}

.hero__content {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto 7.5rem;
  padding-top: 7rem;
}

.hero__domain {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.hero__slogan {
  margin: 0 0 0.7rem !important;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92) !important;
}

.hero p {
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.6rem;
}

/* Flyer: services + offer band */
.flyer-services {
  padding: 2.5rem 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.flyer-services::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 28%;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
  pointer-events: none;
}

.flyer-services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.flyer-service {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.flyer-service svg,
.flyer-service__icon {
  width: 4.2rem;
  height: auto;
  max-height: 3.6rem;
  flex-shrink: 0;
  color: var(--orange);
  object-fit: contain;
}

.flyer-service h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.flyer-service h3 span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95em;
}

.flyer-service p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22rem;
}

.flyer-offer {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  min-height: 420px;
  background: var(--charcoal);
  color: var(--white);
}

.flyer-offer__media,
.flyer-offer__kitchen {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.flyer-offer__media img,
.flyer-offer__kitchen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flyer-offer__media {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.flyer-offer__kitchen {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.flyer-offer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.8rem;
}

.flyer-offer__list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.flyer-offer__list li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
}

.flyer-offer__brand {
  margin: 0 0 1.2rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flyer-offer__brand strong {
  color: var(--white);
}

.partners__note {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.trust-bar {
  background: var(--ink);
  color: var(--white);
  padding: 1.6rem 0;
  border-top: 3px solid var(--orange);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.trust-bar__item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.trust-bar__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(239, 124, 33, 0.18);
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.trust-bar__item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-sub {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.hero__slash {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 48%;
  height: 55%;
  background: var(--orange);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.18;
  pointer-events: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

/* Feature cards overlapping hero */
.features {
  margin-top: -4.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--orange);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.feature-card .btn {
  align-self: flex-start;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

/* Offer + form */
.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.offer-visual {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.offer-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.offer-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.8rem;
}

.form-card h3 {
  margin-bottom: 1.1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.file-drop {
  border: 1.5px dashed #cfcfcf;
  border-radius: 10px;
  padding: 1.1rem;
  background: #fafafa;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
}

.file-drop strong {
  color: var(--orange);
}

.form-note {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #eaf8ef;
  color: #1f6b3a;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fdecea;
  color: #9b1c1c;
  font-weight: 600;
}

.form-error.is-visible {
  display: block;
}

.form-intro {
  margin: -0.4rem 0 1.1rem;
  color: var(--slate);
}

.hp-field {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wpcf7-form {
  display: grid;
  gap: 0.9rem;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 .field input,
.wpcf7 .field textarea {
  width: 100%;
}

.ss-cf7-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.file-drop .wpcf7-form-control-wrap {
  margin-top: 0.55rem;
}

.file-drop input[type="file"] {
  width: 100%;
  padding: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.file-drop__name {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #9b1c1c;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0.4rem 0 0;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #eaf8ef;
  color: #1f6b3a;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background: #fdecea;
  color: #9b1c1c;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 .consent .wpcf7-list-item {
  margin: 0;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.wpcf7 .consent .wpcf7-list-item-label {
  font-size: 0.9rem;
  color: var(--slate);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.wpcf7 .consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

.wpcf7-submit.btn {
  border: 2px solid transparent;
}

/* Products */
.products-hero {
  position: relative;
  padding: 5rem 0 4rem;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.products-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.products-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(31, 31, 31, 0.92) 0%, rgba(31, 31, 31, 0.78) 55%, rgba(239, 124, 33, 0.35) 100%);
}

.products-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  isolation: isolate;
}

.product-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.product-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__bg img {
  transform: scale(1.06);
}

.product-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.88) 0%, rgba(20, 20, 20, 0.25) 70%);
}

.product-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.product-card li {
  margin: 0.2rem 0;
}

.product-card--graphic {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  min-height: 280px;
  justify-content: flex-start;
}

.product-card--graphic h3 {
  color: var(--ink);
}

.product-card--graphic ul {
  color: var(--muted);
  flex: 1;
}

.product-card__graphic {
  margin-top: auto;
  padding: 1rem 0.75rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(239, 124, 33, 0.05) 0%, rgba(239, 124, 33, 0.12) 100%);
  color: var(--orange);
}

.product-card__graphic svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 68px;
}

.product-card--graphic:hover .product-card__graphic {
  background: linear-gradient(180deg, rgba(239, 124, 33, 0.08) 0%, rgba(239, 124, 33, 0.16) 100%);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

/* Machinery */
.machine-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.4rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
}

.checklist svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
  margin-top: 0.15rem;
}

.machine-visual {
  position: relative;
}

.machine-visual>img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.machine-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 16rem;
}

.machine-badge li {
  font-size: 0.9rem;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Partners */
.partners {
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(12deg, transparent 0 18%, #fff 18% 82%, transparent 82%);
  box-shadow: 0 0 0 1px var(--line) inset;
  pointer-events: none;
}

.partners__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 96px;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.partner-logo img {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo--strefaplyt {
  min-height: 160px;
  min-width: 280px;
}

.partner-logo--strefaplyt img {
  max-height: 128px;
  max-width: 300px;
}

.partner-logo--schilsner img {
  max-height: 42px;
  max-width: 220px;
}

/* Audience / individual customers */
.audience-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.4rem;
  margin-top: 1.35rem;
  padding: 0.95rem 1.15rem;
  background: rgba(239, 124, 33, 0.12);
  border: 1px solid rgba(239, 124, 33, 0.35);
  border-radius: 12px;
  color: var(--white);
  max-width: 36rem;
}

.audience-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.audience-note {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.85rem 1.2rem;
  margin: 1.4rem 0 0;
  padding: 1.05rem 1.2rem;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
}

.audience-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.audience-note p {
  margin: 0;
  color: var(--slate);
  max-width: 42rem;
}

/* Download form card */
.download-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.4rem;
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.download-card__text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.download-card__text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

.download-card__text a {
  color: var(--orange);
  font-weight: 700;
}

.download-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.form-card .download-card {
  margin-top: 1.1rem;
  margin-bottom: 1.25rem;
  background: var(--fog);
  box-shadow: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.07);
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* E-rozrys teaser */
.teaser {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.teaser::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  width: 38%;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.teaser>* {
  position: relative;
  z-index: 1;
}

.teaser p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1rem;
}

.teaser__aside {
  text-align: right;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-grid__map {
  display: flex;
  min-height: 100%;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.contact-list svg {
  color: var(--orange);
  margin-top: 0.2rem;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 360px;
  height: 100%;
  flex: 1;
  border-radius: var(--radius);
  filter: grayscale(0.15) contrast(1.05);
}

/* Footer */
.site-footer {
  background: #ece6dc;
  color: #3a3a3a;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer .footer-tagline {
  color: #4a4a4a;
}

.site-footer .footer-domain {
  color: var(--orange);
}

.footer-col h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f1f1f;
}

.footer-col a {
  display: block;
  margin: 0.45rem 0;
  color: #4a4a4a;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #5a5a5a;
}

.brand__logo--footer {
  height: 3.6rem;
  max-width: 320px;
  filter: none;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--fog);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.blog-card__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-card__title {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.25;
}

.blog-card__title a:hover {
  color: var(--orange);
}

.blog-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.blog-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.blog-pagination {
  margin-top: 2rem;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-pagination .current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.blog-single__layout {
  max-width: 760px;
}

.blog-single__hero {
  margin: 0 0 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-single__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-single__content {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.blog-single__content h2 {
  margin-top: 2rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.blog-single__content p,
.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 1.1rem;
}

.blog-single__content a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-single__content ul,
.blog-single__content ol {
  padding-left: 1.25rem;
}

.page-hero .eyebrow a {
  color: inherit;
}

.page-hero .eyebrow a:hover {
  color: var(--orange);
}

.blog-single__cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.4rem;
  background: var(--fog);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}

.blog-single__cta h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.blog-single__cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.blog-single__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
}

.blog-single__nav a:hover {
  color: var(--orange);
}

/* Page header for subpages */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #2f2f2f 60%, #3a2a1c 100%);
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.75);
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {

  .features__grid,
  .offer-grid,
  .machine-grid,
  .contact-grid,
  .product-grid,
  .blog-grid,
  .teaser,
  .footer-grid,
  .flyer-services__grid,
  .flyer-offer,
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .flyer-services::after {
    display: none;
  }

  .flyer-offer__media,
  .flyer-offer__kitchen {
    clip-path: none;
    min-height: 220px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .teaser__aside {
    text-align: left;
  }

  .teaser::after {
    display: none;
  }

  .hero__content {
    margin-bottom: 5.5rem;
  }

  .header-partners__inner {
    gap: 0.75rem;
  }

  .header-partners__address {
    font-size: 0.72rem;
  }

  .header-partners__phone {
    font-size: 0.98rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(2.85rem + 5.1rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--fog);
  }
}

@media (max-width: 640px) {
  .brand__logo {
    height: 3.15rem;
    max-width: min(260px, 64vw);
  }

  .site-header__inner {
    min-height: 4.4rem;
  }

  .header-partner {
    height: 1.95rem;
    padding: 0.2rem 0.5rem;
  }

  .header-partner img {
    height: 1.15rem;
    max-width: 88px;
  }

  .header-partner--strefaplyt {
    height: 2.15rem;
  }

  .header-partner--strefaplyt img {
    height: 1.7rem;
    max-width: 108px;
  }

  .header-partners__contact {
    gap: 0.15rem 0.7rem;
  }

  .header-partners__address {
    font-size: 0.68rem;
  }

  .nav {
    top: calc(2.5rem + 4.4rem);
  }

  .download-card {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-banner {
    max-width: none;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero__content {
    margin-bottom: 4.5rem;
    padding-top: 5.5rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
  }

  .features {
    margin-top: -3rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .machine-badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .partner-logo {
    min-width: 100%;
  }

  .map-embed {
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Order form */
.order-page {
  max-width: min(100% - 2.5rem, 1180px);
}

.form-card--order {
  padding: 2rem;
}

.form-card h3:not(:first-child) {
  margin-top: 1.5rem;
}

.order-howto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.3rem;
}

.order-howto article {
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

.order-howto strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.order-howto p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.edge-diagram {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.edge-diagram__body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, 420px);
}

.edge-diagram__board {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}

.edge-diagram__board span {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.edge-diagram__board small {
  display: block;
  margin-top: 0.15rem;
  color: var(--orange);
  font-weight: 700;
}

.order-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field--wide {
  grid-column: 1 / -1;
}

.order-table-head {
  margin-top: 0.4rem;
}

.order-table-head h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-table-head p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.order-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.order-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.order-table th,
.order-table td {
  padding: 0.4rem 0.35rem;
  border-bottom: 1px solid var(--fog);
  vertical-align: middle;
}

.order-table th {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--fog);
  white-space: nowrap;
}

.order-table__lp {
  width: 2.2rem;
  text-align: center;
  font-weight: 800;
  color: var(--muted);
}

.order-table input[type="text"],
.order-table input[type="number"] {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0.5rem 0.45rem;
  background: #fafafa;
}

.order-table input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.order-table__check {
  text-align: center;
  width: 2.4rem;
}

.order-table__check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--orange);
}

.order-table__remove {
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  border-radius: 8px;
  background: #f3f3f3;
  color: #6b6b6b;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.order-table__remove:hover {
  background: #fdecea;
  color: #9b1c1c;
}

.order-table-actions {
  display: flex;
  justify-content: flex-start;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--slate);
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

body.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 12, 12, 0.88);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 3.5rem 1rem 1.5rem;
  pointer-events: none;
}

.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  pointer-events: none;
}

.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  pointer-events: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  margin: 0 0.4rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--orange);
}

@media (max-width: 900px) {
  .order-howto {
    grid-template-columns: 1fr;
  }

  .order-fields {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-card--order {
    padding: 1.25rem;
  }

  .lightbox__dialog {
    grid-template-columns: 1fr;
    padding: 4rem 0.8rem 1rem;
  }

  .lightbox__prev,
  .lightbox__next {
    position: absolute;
    top: 48%;
    z-index: 2;
  }

  .lightbox__prev {
    left: 0.4rem;
  }

  .lightbox__next {
    right: 0.4rem;
  }
}