:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --accent: #1d4ed8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.wrap { max-width: 52rem; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
header { margin-bottom: 2.5rem; }
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1 { margin: 0 0 0.75rem; font-size: 1.75rem; font-weight: 400; letter-spacing: -0.03em; }
.lede { margin: 0; color: var(--muted); }

.lang {
  display: none; /* tymczasowo: brak zrzutów EN */
  gap: 0.5rem;
  margin: 0;
  margin-left: auto;
}
.lang button {
  height: 2.5rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--card);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.lang button[aria-pressed="true"] {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

section { margin-top: 2.5rem; }
h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
h3 { margin: 1.25rem 0 0.4rem; font-size: 0.95rem; }
ul { padding-left: 1.2rem; }
.features h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.95rem;
}
.features ul { margin: 0.35rem 0 0; }
.features li { margin: 0.35rem 0; }
.meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.decision {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--card);
}
.decision h3,
.decision p {
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  text-indent: 0;
}
.decision p { margin: 0.35rem 0 0; }
.decision p:first-of-type { margin-top: 0; }

@media (min-width: 1100px) {
  .decision--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1rem 1.25rem;
    align-items: start;
  }
  .decision--split .shots {
    margin-top: 0;
    align-self: center;
  }
  .decision--split figure.shot.shot--two-thirds {
    max-width: none;
    margin-inline: 0;
  }
  .decision--split .shot--phone {
    max-width: 14rem;
    margin-inline: 0;
  }
}
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.shots { display: grid; gap: 1.25rem; margin-top: 1rem; }
figure.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--card);
  overflow: hidden;
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  background: #e2e8f0;
}
figure.shot.shot--phone {
  max-width: 16.25rem;
  margin-inline: auto;
}
figure.shot.shot--two-thirds {
  max-width: 66.666%;
  margin-inline: auto;
}
.shot--empty .ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.shot:not(.shot--empty) .ph { display: none; }
figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

footer.site-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem 2rem;
}
.footer-brand {
  flex: 1 1 16rem;
  max-width: 28rem;
}
.footer-brand p { margin: 0; }
.footer-brand p + p { margin-top: 0.4rem; }
.footer-company {
  flex: 0 1 14rem;
  margin: 0;
  font-style: normal;
  text-align: right;
  line-height: 1.5;
}
.footer-company a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-company a:hover { color: var(--ink); }
.footer-copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
@media (max-width: 40rem) {
  .footer-company { text-align: left; }
}

html[data-lang="en"] .pl { display: none; }
html[data-lang="pl"] .en { display: none; }
