/* ==========================================================================
   Rafał Barzycki Drift — styles.css
   Marka: czerń/atrament #141416 · pomarańcz #F25B28 · biel #FFFFFF
   Mobile-first. Pomarańcz oszczędnie. Sekcje rozdzielane przestrzenią i tłem.
   ========================================================================== */

:root {
  --ink: #141416;
  --ink-2: #1d1d20;      /* karty / panele na ciemnym */
  --ink-3: #2a2a2e;      /* obrysy na ciemnym */
  --paper: #ffffff;
  --paper-2: #f4f4f5;    /* karty na białym */
  --orange: #f25b28;
  --orange-700: #d8481a;
  --orange-ink: #c2410c;   /* ciemniejszy pomarańcz — mały tekst na białym (AA 5.1:1) */
  --white: #ffffff;

  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);
  --text-on-light: #1a1a1c;
  --text-on-light-muted: #55555a;

  --font-head: "Anton", "Oswald", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1120px;
  --gap: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.075rem);
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ------------------------------ Typography ------------------------------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 1.8rem + 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 1.4rem + 3.6vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.6rem); letter-spacing: 0.02em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 1rem;
}

.lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem); }

.accent { color: var(--orange); }

/* ------------------------------ Layout ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-y); }

/* Kotwice nie chowają się pod sticky-nagłówkiem (#kim-jestem, #auto, ...). */
section[id],
main[id] { scroll-margin-top: 80px; }

.section--dark {
  background: var(--ink);
  color: var(--text-on-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .muted { color: var(--text-on-dark-muted); }

.section--light {
  background: var(--paper);
  color: var(--text-on-light);
}
.section--light .muted { color: var(--text-on-light-muted); }
/* Mały pomarańczowy tekst na białym wymaga ciemniejszego odcienia (kontrast AA). */
.section--light .eyebrow,
.section--light .more-link,
.period__name { color: var(--orange-ink); }

/* Linki w treści (inline) — podkreślone i z odpowiednim kontrastem (WCAG 1.4.1). */
.link,
.achv a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.section--dark .link,
.section--dark .achv a,
.page-hero .link { color: var(--orange); }
.section--light .link,
.section--light .achv a { color: var(--orange-ink); }

.section__head { max-width: 60ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: var(--ink);          /* ciemny tekst na pomarańczu = kontrast AA */
  box-shadow: 0 14px 30px -14px rgba(242, 91, 40, 0.7);
}
.btn--primary:hover { background: #ff6a39; }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

.section--light .btn--ghost:hover { background: rgba(20, 20, 22, 0.06); }

.btn--lg { min-height: 60px; font-size: 1.12rem; padding: 1rem 2.1rem; }

.btn-note {
  font-size: 0.92rem;
  margin-top: 0.85rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* link "Dowiedz się więcej" — akcja drugorzędna, nie konkuruje z CTA */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--orange);
  border-bottom: 2px solid transparent;
  padding-block: 0.25rem;
}
.more-link:hover { border-bottom-color: currentColor; }
.more-link::after { content: "\2192"; transition: transform 0.18s var(--ease); }
.more-link:hover::after { transform: translateX(4px); }

/* ------------------------------ Header / nav ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);   /* nieprzezroczyste — pełny kontrast logo (AA) */
  border-bottom: 1px solid var(--ink-3);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
}
.brand b { color: var(--orange); font-weight: 400; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--ink-3);
  border-radius: 10px;
  color: var(--white);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

.nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 8px;
}
.nav__menu a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }
.nav__cta { margin-left: 0.4rem; }
.nav__cta .btn { min-height: 44px; padding: 0.5rem 1.2rem; font-size: 0.97rem; }

/* mobile: panel rozwijany */
@media (max-width: 819px) {
  .nav__panel {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-3);
    padding: 0.5rem clamp(1.1rem, 5vw, 2.5rem) 1.5rem;
    display: grid;
    gap: 0.25rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
      visibility 0s linear 0.2s;
  }
  .nav__panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__menu { flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav__menu a { min-height: 52px; font-size: 1.05rem; }
  .nav__cta { margin: 0.6rem 0 0; }
  .nav__cta .btn { width: 100%; min-height: 52px; }
  .brand { font-size: 1.08rem; }
}

@media (min-width: 820px) {
  .nav__toggle { display: none; }
  .nav__panel { display: flex !important; align-items: center; gap: 0.6rem; }
}

/* ------------------------------ Page hero -------------------------------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
  border-bottom: 1px solid var(--ink-3);
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { font-size: clamp(2.2rem, 1.6rem + 4vw, 4rem); margin-bottom: 0.35em; }
.page-hero .lead { color: var(--text-on-dark-muted); max-width: 60ch; }
.crumbs { margin-bottom: 1rem; font-size: 0.9rem; }
.crumbs a { color: var(--text-on-dark-muted); text-decoration: underline; text-underline-offset: 2px; }
.crumbs a:hover { color: var(--orange); }

/* --------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: clip;
  isolation: isolate;
}
.hero__media-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after { /* przyciemnienie pod tekst — czytelność */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(20, 20, 22, 0.55) 0%,
      rgba(20, 20, 22, 0.62) 45%,
      rgba(20, 20, 22, 0.9) 100%
    );
}
.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(92svh, 760px);
  padding-block: clamp(2.5rem, 8vh, 5rem);
}
.hero h1 { margin: 0.1em 0 0.35em; }
.hero .eyebrow { color: var(--orange); }
.hero__sub {
  font-size: clamp(1.05rem, 0.98rem + 0.7vw, 1.4rem);
  max-width: 36ch;
  color: var(--text-on-dark);
  margin-bottom: 1.8rem;
}
.hero__cta { display: flex; flex-direction: column; gap: 0.3rem; align-items: flex-start; }
.hero__cta .btn-note { color: var(--text-on-dark-muted); }

.video-pause {
  position: absolute;
  right: clamp(1rem, 5vw, 2.5rem);
  bottom: clamp(1rem, 5vw, 2.5rem);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(20, 20, 22, 0.55);
  color: var(--white);
  display: none;            /* pokazywany przez JS gdy jest wideo */
  align-items: center;
  justify-content: center;
}
.video-pause svg { width: 18px; height: 18px; }

/* ------------------------- Listy / komponenty ---------------------------- */
.grid { display: grid; gap: var(--gap); }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split--media-first .split__media { order: -1; }
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-frame--wide img { aspect-ratio: 16 / 10; }

/* Osiągnięcia */
.achv {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.achv li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.achv li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--orange);
  transform: rotate(45deg);   /* mały romb zamiast bullet */
}

/* Kafelki specyfikacji */
.specs { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.spec {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.spec__value {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.7rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  white-space: nowrap;   /* „800 KM / 1000 Nm" w jednej linii */
}
.spec__label {
  margin-top: 0.4rem;
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
}

/* Karty "Więcej niż wyniki" */
.feature {
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature__body { padding: 1.4rem 1.4rem 1.6rem; }
.feature h3 { margin-bottom: 0.4rem; }
.feature p { color: var(--text-on-light-muted); }

/* Szczera umowa */
.deal {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 5vw, 3rem);
  max-width: 64ch;
  margin-inline: auto;
}
.deal .lead { color: var(--text-on-dark); }
.deal strong { color: var(--white); }

/* Social proof (cytat partnera + twardy efekt) — pod „Szczerą umową". */
.proof { max-width: 60ch; margin: 1.9rem auto 0; text-align: center; }
.proof__quote {
  margin: 0 0 0.8rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.proof__quote cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--orange);
}
.proof__fact { color: var(--text-on-dark-muted); margin: 0 0 0.8rem; font-size: 0.97rem; }

/* Pakiety */
.packages { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid #e6e6e8;
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
}
.pkg--featured {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}
.pkg--featured .pkg__price,
.pkg--featured h3 { color: var(--ink); }
.pkg__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.pkg--featured .pkg__tag { background: var(--ink); color: var(--white); }
.pkg h3 { margin-bottom: 0.2rem; }
.pkg__price { display: grid; gap: 0.2rem; margin-bottom: 1rem; }
.pkg__price-row {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  color: var(--orange-ink);
  line-height: 1.1;
}
.pkg__price-row b {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-light-muted);
  margin-right: 0.45rem;
}
.pkg--featured .pkg__price-row,
.pkg--featured .pkg__price-row b { color: var(--ink); }
.pkg__list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.97rem;
}
.pkg__list li { position: relative; padding-left: 1.6rem; }
.pkg__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--orange);
}
.pkg--featured .pkg__list li::before { color: var(--ink); }
.pkg .btn { margin-top: auto; }
.pkg--featured .btn--primary { background: var(--ink); color: var(--white); box-shadow: none; }
.pkg--featured .btn--primary:hover { background: #000; }

.packages-note {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
  max-width: 70ch;
}
.packages-note .muted { font-size: 0.97rem; }

/* „Co dostajesz w każdym pakiecie" */
.deliverables {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 62ch;
}
.deliverables li { position: relative; padding-left: 1.6rem; color: var(--text-on-light-muted); }
.deliverables li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--orange-ink);
}

/* Auta sezonowe (lato E36 / zima E46) */
.season-card {
  background: var(--paper-2);
  border: 1px solid #e6e6e8;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
}
.season-card__tag {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.season-card__tag--winter { background: var(--ink); color: var(--white); }
.season-card h3 { margin: 0 0 0.3rem; }
.season-card__spec { font-weight: 700; color: var(--text-on-light); margin: 0 0 0.3rem; }
a.season-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
a.season-card:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--shadow); }
.season-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: var(--orange-ink);
  font-weight: 600;
}
.season-card__cta::after { content: "\2192"; transition: transform 0.18s var(--ease); }
a.season-card:hover .season-card__cta::after { transform: translateX(4px); }

/* Logo wall („Zaufali mi" na stronie głównej) */
.logo-wall__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.7rem, 2vw, 1.1rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 560px) { .logo-wall__grid { grid-template-columns: repeat(4, 1fr); } }
.logo-wall__grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  border: 1px solid #e6e6e8;
  border-radius: 10px;
  background: var(--paper-2);
}

/* Okres współpracy */
.period {
  background: var(--paper);
  border: 1px solid #e6e6e8;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.7rem;
}
.period h3 { color: var(--ink); margin-bottom: 0.5rem; }
.period p { color: var(--text-on-light-muted); margin: 0; }
.period__name { color: var(--orange-ink); }   /* ciemniejszy pomarańcz — AA na białym */

/* Partnerzy („Zaufali mi") */
.partners-grid { display: grid; gap: var(--gap); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
@media (min-width: 760px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner {
  background: var(--paper-2);
  border: 1px solid #e6e6e8;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.partner__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.partner__logo { width: 168px; max-width: 58%; height: auto; border-radius: 8px; }
.partner h3 { margin: 0; }
.partner p { color: var(--text-on-light-muted); margin: 0; }
.partner__effect { color: var(--text-on-light); font-weight: 600; }
.partner blockquote {
  margin: 0.3rem 0 0;
  font-style: italic;
  color: var(--text-on-light);
}
.partner blockquote cite {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--orange-ink);
}
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge--live { background: #e7f6ec; color: #15663a; }
.badge--past { background: #ececef; color: #54545a; }
.badge--talks { background: #fde7dd; color: #b83d0c; }

/* FAQ */
.faq { display: grid; gap: 1.3rem; max-width: 72ch; }
.faq__item h3 { margin: 0 0 0.4rem; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); }
.faq__item p { margin: 0; color: var(--text-on-light-muted); }

/* Galeria */
.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: var(--ink-2);
}

/* Wideo */
.videos { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.video-card { display: flex; flex-direction: column; gap: 0.75rem; }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed--placeholder {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.4rem;
  border: 1px dashed var(--ink-3);
  color: var(--text-on-dark-muted);
  padding: 1rem;
}
.video-caption { color: var(--text-on-dark-muted); font-size: 0.97rem; }

/* Kontakt */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}
@media (min-width: 760px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-list a:hover { color: var(--orange); }
.contact-list .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.15rem;
}
.contact-list .value { font-size: 1.15rem; font-weight: 600; }

/* --------------------------------- Footer -------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--ink-3);
  padding-block: 2.25rem;
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: var(--text-on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }

/* ----------------------------- Trust strip ------------------------------- */
.trust-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  color: var(--text-on-dark);
  padding-block: 1.4rem;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  text-align: center;
}
.trust-strip__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
}
.trust-strip__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-strip__names span { white-space: nowrap; }
.trust-strip a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-strip a:hover { color: #ff6a39; }

/* --------------------------- Sticky mobile CTA --------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.7rem clamp(1rem, 5vw, 1.5rem);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0));
  background: var(--ink);   /* nieprzezroczyste — bez fałszywych alarmów kontrastu */
  border-top: 1px solid var(--ink-3);
  display: none;
}
.sticky-cta .btn { width: 100%; min-height: 50px; }
@media (max-width: 819px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 78px; }   /* miejsce na sticky CTA */
}

/* --------------------------- Scroll reveal ------------------------------- */
/* Ukrywamy tylko gdy JS aktywny (html.js) — bez JS treść jest widoczna. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
html.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
html.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn { transition: none; }
  * { animation-duration: 0.001ms !important; }
}

/* ------------------------------ Utilities -------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-cta { margin-top: clamp(2rem, 5vw, 3rem); }
.stack > * + * { margin-top: 1rem; }
