/* ============================================================
   V-serwis - system stylów
   Kolory marki pobrane z logo: teal #489A8E, cyan #00CCFF
   Skala promieni (reguła projektu, stosowana wszędzie):
     - przyciski: pełna pigułka (999px)
     - karty / sekcje: 18px
     - pola formularza: 12px
   ============================================================ */

:root {
  color-scheme: light;

  /* marka */
  --brand-900: #143C38;
  --brand-800: #1E4E47;
  --brand-700: #2E7268;  /* tło przycisków - kontrast 5.5:1 z bielą */
  --brand-600: #3A857A;
  --brand-500: #489A8E;  /* kolor z logo, grafika i obrysy */
  --brand-200: #BFDCD7;
  --brand-050: #EEF6F4;
  --cyan:      #00CCFF;  /* akcent graficzny z logo, nigdy pod tekstem */
  --cyan-soft: #DFF7FF;

  /* neutralne (chłodne, dostrojone do teal) */
  --ink:      #0E1A1C;
  --ink-2:    #43585C;
  --ink-3:    #5C7276;
  --line:     #E1E9EA;
  --line-2:   #EDF2F3;
  --surface:  #F4F8F8;
  --card:     #FFFFFF;
  --page:     #FFFFFF;

  /* stany */
  --danger:   #B23A32;
  --danger-bg:#FDF2F1;
  --ok:       #1F7A5C;

  /* typografia */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  /* rytm */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  --r-card: 18px;
  --r-field: 12px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 26, 28, .05), 0 4px 14px -8px rgba(14, 26, 28, .12);
  --shadow-md: 0 2px 4px rgba(14, 26, 28, .04), 0 18px 40px -22px rgba(20, 60, 56, .35);
  --shadow-lg: 0 30px 70px -40px rgba(20, 60, 56, .55);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

:root[data-theme="dark"] {
    --brand-700: #6FBFB1;
    --brand-600: #7FC9BC;
    --brand-500: #6FBFB1;
    --brand-200: #2C5A54;
    --brand-050: #16292C;
    --cyan-soft: #10333D;

    --ink:      #E9F0EF;
    --ink-2:    #A9BCBE;
    --ink-3:    #7E9296;
    --line:     #23393B;
    --line-2:   #1B2E31;
    --surface:  #101E20;
    --card:     #15252700;
    --card:     #152527;
    --page:     #0C1719;

    --danger:   #FF9B90;
    --danger-bg:#2A1A18;
    --ok:       #5FD3AC;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 18px 40px -24px rgba(0,0,0,.8);
    --shadow-lg: 0 30px 70px -40px rgba(0,0,0,.9);
  }


/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-800); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-field) 0;
}
.skip-link:focus { left: 0; }

/* ---------- układ ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }

.section-head { max-width: 46rem; }
.section-head p {
  margin-top: 1rem;
  color: var(--ink-2);
  max-width: 62ch;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: .9rem;
}
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

/* ---------- przyciski ---------- */
.btn {
  --btn-bg: var(--brand-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  white-space: nowrap;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s var(--ease), transform .12s var(--ease), box-shadow .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--brand-800); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(1px); }
.btn i { font-size: 1.15em; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--brand-050); border-color: var(--brand-200); box-shadow: none; }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--brand-900);
}
.btn--light:hover { background: #EAF6F4; }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--brand-700); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow:hover { border-color: currentColor; gap: .75rem; }

/* ---------- nagłówek ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--page) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--page); backdrop-filter: none; }
}
.header-inner {
  height: 76px;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 52px; width: auto; }

.nav { margin-left: auto; }
.nav ul {
  list-style: none; display: flex; align-items: center; gap: .35rem;
  margin: 0; padding: 0;
}
.nav a {
  display: block; padding: .5rem .7rem;
  font-size: .935rem; font-weight: 600; text-decoration: none;
  color: var(--ink-2); border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--brand-050); }

.header-cta { display: flex; align-items: center; gap: .75rem; flex: 0 0 auto; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.header-phone i { color: var(--brand-600); font-size: 1.2rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-pill); cursor: pointer;
}
.nav-toggle i { font-size: 1.4rem; }

@media (max-width: 1080px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) { .header-phone span { display: none; } }

/* panel mobilny */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--page);
  padding: 1.25rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li + li { border-top: 1px solid var(--line-2); }
.mobile-nav a {
  display: block; padding: 1rem 0;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  text-decoration: none;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60rem 32rem at 82% -12%, var(--cyan-soft), transparent 62%),
    radial-gradient(48rem 30rem at 8% 8%, var(--brand-050), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 6vw, 6rem);
}
.hero h1 {
  font-size: clamp(2rem, 3.7vw, 2.8rem);
  letter-spacing: -.03em;
}
.hero h1 .mark {
  position: relative;
  white-space: nowrap;
}
.hero h1 .mark::after {
  content: "";
  position: absolute; left: -.05em; right: -.05em; bottom: .05em; height: .17em;
  background: var(--cyan); opacity: .38; border-radius: 3px;
  z-index: -1;
}
.hero-lead {
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .85rem;
}

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -1.5rem; bottom: -1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .9rem;
  max-width: 17rem;
}
.hero-badge i { font-size: 1.7rem; color: var(--brand-600); }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-badge span { font-size: .85rem; color: var(--ink-2); line-height: 1.4; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 2.5rem 3.5rem; }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 16 / 10; }
  .hero-badge { left: auto; right: 1rem; bottom: -1.25rem; }
}
@media (max-width: 480px) {
  .hero-badge { position: static; margin-top: 1rem; max-width: none; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- pasek marek ---------- */
.brands {
  border-block: 1px solid var(--line-2);
  background: var(--surface);
  padding-block: 1.6rem;
}
.brands-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem 2.5rem;
}
.brands p { font-size: .9rem; color: var(--ink-3); }
.brands img { width: 340px; }
[data-theme="dark"] .brands img { background: #fff; padding: .5rem .9rem; border-radius: 10px; }


/* ---------- oferta (bento 3 kafle) ---------- */
.offer-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.offer-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 15rem;
  padding: 1.75rem;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.offer-card--tall { grid-row: span 2; min-height: 26rem; }
.offer-card__bg { position: absolute; inset: 0; }
.offer-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.offer-card__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,60,56,.15) 0%, rgba(20,60,56,.55) 45%, rgba(11,32,30,.9) 100%);
}
.offer-card__body { position: relative; color: #fff; }
.offer-card__body h3 { color: #fff; }
.offer-card__body p { margin-top: .5rem; font-size: .95rem; color: rgba(255,255,255,.86); max-width: 42ch; }
.offer-card__more {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .9rem; color: #fff;
}
.offer-card__more i { transition: transform .25s var(--ease); }
.offer-card:hover .offer-card__more i { transform: translateX(4px); }

@media (max-width: 780px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--tall { grid-row: auto; min-height: 18rem; }
}

/* ---------- o nas (split) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-figure img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--r-card);
}
.about-list {
  margin: 1.75rem 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem 1.5rem;
}
.about-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .95rem; color: var(--ink-2);
}
.about-list i { color: var(--brand-600); font-size: 1.15rem; flex: 0 0 auto; margin-top: .1rem; }
.about-cta { margin-top: 2rem; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
}

/* ---------- dlaczego my (lista z numeracją) ---------- */
.why-grid {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.why-sticky { position: sticky; top: 110px; align-self: start; }
.why-list { display: grid; }
.why-item {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item__num {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 600;
  color: var(--brand-500); line-height: 1;
}
.why-item p { margin-top: .6rem; color: var(--ink-2); max-width: 58ch; }
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
  .why-item { grid-template-columns: 3rem 1fr; gap: 1rem; }
}

/* ---------- realizacje (galeria) ---------- */
.gallery {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12rem;
  gap: 1rem;
}
.gallery a {
  position: relative; overflow: hidden;
  border-radius: var(--r-card);
  background: var(--surface);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery a:hover img { transform: scale(1.05); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(4) { grid-column: span 2; }
.gallery-foot { margin-top: 2rem; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10rem; }
  .gallery a:nth-child(1) { grid-column: span 2; }
  .gallery a:nth-child(4) { grid-column: span 2; }
}

/* ---------- formularz ---------- */
.form-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-aside p { margin-top: 1rem; color: var(--ink-2); max-width: 40ch; }
.contact-rows { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-row { display: flex; gap: .85rem; align-items: flex-start; }
.contact-row i { font-size: 1.3rem; color: var(--brand-600); flex: 0 0 auto; margin-top: .15rem; }
.contact-row strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); font-weight: 700; }
.contact-row a, .contact-row span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; text-decoration: none; }
.contact-row a:hover { color: var(--brand-700); }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label {
  font-size: .875rem; font-weight: 700; color: var(--ink);
}
.field label .req { color: var(--brand-600); }
.field .hint { font-size: .8rem; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--r-field);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap i {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--ink-3);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-200); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-500) 22%, transparent);
}
.field .error {
  display: none;
  font-size: .82rem; font-weight: 600; color: var(--danger);
  align-items: center; gap: .35rem;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
  background: var(--danger-bg);
}
.field.is-invalid .error { display: flex; }

/* segment: rodzaj zgłoszenia */
.segment { display: flex; flex-wrap: wrap; gap: .5rem; }
.segment input { position: absolute; opacity: 0; pointer-events: none; }
.segment label {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.segment label:hover { border-color: var(--brand-200); background: var(--brand-050); }
.segment input:checked + label {
  background: var(--brand-700); border-color: var(--brand-700); color: #fff;
}
.segment input:focus-visible + label { outline: 3px solid var(--brand-500); outline-offset: 2px; }

/* zgoda */
.consent { display: flex; gap: .7rem; align-items: flex-start; margin: .5rem 0 1.5rem; }
.consent input { width: 1.2rem; height: 1.2rem; margin-top: .18rem; accent-color: var(--brand-700); flex: 0 0 auto; }
.consent label { font-size: .85rem; color: var(--ink-2); line-height: 1.5; }
.consent a { color: var(--brand-700); font-weight: 600; }
.consent.is-invalid label { color: var(--danger); }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-foot .note { font-size: .82rem; color: var(--ink-3); }

.btn.is-loading { pointer-events: none; opacity: .8; }
.btn.is-loading .spinner { display: inline-block; }
.spinner {
  display: none; width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2s; } }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success i { font-size: 3rem; color: var(--ok); }
.form-success h3 { margin-top: 1rem; }
.form-success p { margin-top: .6rem; color: var(--ink-2); }
.form-card.is-sent .form-body { display: none; }
.form-card.is-sent .form-success { display: block; }

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- zasięg ---------- */
.reach-grid {
  display: grid; grid-template-columns: 1fr .85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.city-list { margin: 1.75rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; }
.city-list li {
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--card);
  font-size: .9rem; font-weight: 600;
}
.reach-figure img { width: 100%; border-radius: var(--r-card); border: 1px solid var(--line); }
@media (max-width: 860px) { .reach-grid { grid-template-columns: 1fr; } }

/* ---------- stopka ---------- */
.site-footer {
  background: var(--brand-900);
  color: #D6E7E4;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer h4 {
  font-family: var(--font-display); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #8FC4BB; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer a { text-decoration: none; color: #D6E7E4; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-logo { height: 52px; width: auto; margin-bottom: 1.1rem; }
.footer-about { font-size: .92rem; color: #A9CFC8; max-width: 32ch; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .85rem; color: #8FC4BB;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- pasek awaryjny na mobile ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: .6rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--page) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; }
@media (max-width: 720px) {
  .call-bar { display: flex; }
  body { padding-bottom: 4.75rem; }
}

/* ---------- animacje wejścia ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); }
  .js .reveal.is-in {
    opacity: 1; transform: none;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--delay, 0ms);
  }
}

/* ============================================================
   Komponenty podstron
   ============================================================ */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.lead { margin-top: 1.15rem; font-size: 1.075rem; color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-3); font-size: .9rem; }
.note-line { margin-top: 1.25rem; font-size: .92rem; color: var(--ink-2); }
.note-line a, .lead a { color: var(--brand-700); font-weight: 700; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  margin: 0 0 1rem;
  padding: .8rem 1rem;
  background: var(--danger-bg);
  border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent);
  border-radius: var(--r-field);
  color: var(--danger); font-size: .9rem; font-weight: 600;
}
.field fieldset, fieldset.field { border: 0; padding: 0; margin: 0 0 1.35rem; }
fieldset.field legend { font-size: .875rem; font-weight: 700; padding: 0; margin-bottom: .6rem; }

/* okruszki */
.crumbs { border-bottom: 1px solid var(--line-2); background: var(--page); }
.crumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0; padding: .85rem 0; font-size: .85rem; color: var(--ink-3);
}
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--line); }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand-700); }
.crumbs [aria-current] { color: var(--ink-2); font-weight: 600; }

/* podmenu w nawigacji */
.nav .has-sub { position: relative; }
.nav .has-sub > a { display: inline-flex; align-items: center; gap: .3rem; }
.nav .has-sub > a i { font-size: .85em; transition: transform .2s var(--ease); }
.subnav {
  position: absolute; top: calc(100% + .5rem); left: 0;
  min-width: 17rem; padding: .5rem !important;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-md);
  display: block !important;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav .has-sub:hover .subnav,
.nav .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: none; }
.nav .has-sub:hover > a i { transform: rotate(180deg); }
.subnav li { display: block; }
.subnav a { display: block; padding: .55rem .75rem; border-radius: 10px; font-weight: 600; }

.mobile-nav__foot { display: grid; gap: .6rem; margin-top: auto; }

/* hero podstrony */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-2); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46rem 26rem at 88% -20%, var(--cyan-soft), transparent 62%);
}
.page-hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.page-hero--plain { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero__kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand-600); margin-bottom: .8rem;
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.page-hero .hero-actions { margin-top: 1.75rem; }
.page-hero__figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__figure { order: -1; }
  .page-hero__figure img { aspect-ratio: 16 / 10; }
}

/* treść + boczna lista */
.prose-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose p { margin-bottom: 1.15rem; color: var(--ink-2); max-width: 68ch; }
.prose h2 { margin-bottom: 1.25rem; }
.prose h2 + p { margin-top: 0; }
.prose--single { grid-column: 1 / -1; max-width: 46rem; }
.prose--single h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-top: 2.25rem; }
.prose--single h2:first-child { margin-top: 0; }
.prose-aside {
  position: sticky; top: 110px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.prose-aside h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.prose-aside .btn { margin-top: 1.5rem; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--ink-2); }
.ticks i { color: var(--brand-600); margin-top: .15rem; flex: 0 0 auto; }
@media (max-width: 900px) {
  .prose-grid { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
}

/* kroki */
.steps { list-style: none; margin: 2.75rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { display: grid; gap: .9rem; }
.step__dot {
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--brand-050); color: var(--brand-700);
  border: 1px solid var(--brand-200); font-size: 1.3rem;
}
.step h3 { font-size: 1.05rem; }
.step p { margin-top: .45rem; font-size: .93rem; color: var(--ink-2); }
.step a { color: var(--brand-700); font-weight: 700; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__list { display: grid; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: 0 0 auto; color: var(--brand-600);
  transition: transform .25s var(--ease);
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq__answer { padding-bottom: 1.35rem; }
.faq__answer p { color: var(--ink-2); max-width: 64ch; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* kafle oferty */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tile {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--card); overflow: hidden; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.tile__img { margin: 0; background: var(--surface); }
.tile__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.tile__body { padding: 1.5rem; display: grid; gap: .6rem; }
.tile__body h2 { font-size: 1.2rem; }
.tile__body p { font-size: .93rem; color: var(--ink-2); }
.tile__body .link-arrow { margin-top: .35rem; font-size: .9rem; }
@media (max-width: 980px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tile-grid { grid-template-columns: 1fr; } }

/* mini karty linków */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.mini-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.mini-card:hover { border-color: var(--brand-500); transform: translateX(3px); }
.mini-card i { color: var(--brand-600); }
@media (max-width: 900px) { .mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mini-grid { grid-template-columns: 1fr; } }

/* produkty */
.product-list { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.product {
  display: grid; grid-template-columns: 15rem 1fr; gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
}
.product__img { margin: 0; background: var(--surface); border-radius: var(--r-card); overflow: hidden; }
.product__img img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; padding: 1rem; }
.product__kind { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-600); }
.product__body h3 { margin: .4rem 0 .8rem; font-size: 1.35rem; }
.product__body > p { color: var(--ink-2); max-width: 70ch; }
.product .ticks { margin-top: 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; }
  .product__img img { aspect-ratio: 4 / 3; }
  .product .ticks { grid-template-columns: 1fr; }
}

/* realizacje */
.works-title { margin-bottom: 2rem; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.works-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 60rem; }
.work { margin: 0; }
.work img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-card); border: 1px solid var(--line);
}
.work figcaption { margin-top: .6rem; font-size: .85rem; color: var(--ink-3); }
@media (max-width: 860px) { .works-grid, .works-grid--two { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .works-grid, .works-grid--two { grid-template-columns: 1fr; } }

/* karty kontaktu */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-card {
  padding: 1.75rem; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-card);
}
.contact-card > i { font-size: 1.8rem; color: var(--brand-600); }
.contact-card h2 { font-size: 1.05rem; margin: .9rem 0 .6rem; }
.contact-card p { color: var(--ink-2); }
.contact-card a { color: var(--brand-700); font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-big { font-family: var(--font-display); font-size: 1.5rem; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }

/* pasek CTA */
.cta-band { background: var(--brand-800); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }
.cta-band p { margin-top: .75rem; color: #C7E3DE; max-width: 46ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn--outline {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.45); box-shadow: none;
}
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }

.footer-cities { margin-top: 2.5rem; font-size: .85rem; color: #8FC4BB; }

.h1-sub {
  display: block;
  margin-top: .5rem;
  font-size: .42em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-2);
}

/* ============================================================
   Hero slider
   ============================================================ */
.slider { position: relative; }
.slider__track {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
  background: var(--surface);
}
.slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.5rem 1.4rem;
  display: grid; gap: .2rem;
  background: linear-gradient(180deg, rgba(11,32,30,0) 0%, rgba(11,32,30,.82) 62%);
  color: #fff;
}
.slide__label { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.slide__text { font-size: .875rem; color: rgba(255,255,255,.85); }

.slider__dots {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; gap: .4rem;
  padding: .4rem .5rem;
  border-radius: var(--r-pill);
  background: rgba(11,32,30,.35);
  backdrop-filter: blur(8px);
}
.dot {
  width: 26px; height: 6px; padding: 0;
  border: 0; border-radius: var(--r-pill);
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .3s var(--ease), width .3s var(--ease);
}
.dot:hover { background: rgba(255,255,255,.7); }
.dot.is-active { background: #fff; width: 34px; }

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}

/* ============================================================
   Menu pełnoekranowe (mobile)
   ============================================================ */
.mobile-nav {
  background:
    radial-gradient(38rem 26rem at 110% -10%, rgba(0, 204, 255, .16), transparent 60%),
    radial-gradient(32rem 24rem at -10% 110%, rgba(72, 154, 142, .22), transparent 60%),
    var(--brand-900);
  color: #fff;
  padding: 1.1rem var(--gutter) 2rem;
  gap: 0;
}
.mobile-nav .nav-toggle { border-color: rgba(255,255,255,.28); color: #fff; }

.mobile-nav nav { margin-top: 1.5rem; }
.mobile-nav li + li { border-top: 1px solid rgba(255,255,255,.12); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem 0;
  font-size: 1.5rem; font-weight: 600; color: #fff;
}
.mobile-nav a::after {
  content: "\2192";
  font-size: 1rem; color: rgba(255,255,255,.45);
  transition: transform .2s var(--ease);
}
.mobile-nav a:active::after { transform: translateX(4px); }
.mobile-nav a[aria-current] { color: #7FE9FF; }

.mobile-nav__sublabel {
  margin: 1.75rem 0 .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.mobile-nav .is-sub a { font-size: 1.02rem; font-weight: 500; padding: .7rem 0; color: rgba(255,255,255,.86); }
.mobile-nav .is-sub a::after { font-size: .85rem; }

.mobile-nav__foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; gap: .6rem;
}
.mobile-nav__foot .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.mobile-nav__foot .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.mobile-nav__meta {
  margin-top: 1.25rem;
  font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6;
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-nav { animation: navIn .35s var(--ease); }
  .mobile-nav nav li, .mobile-nav .mobile-nav__foot {
    animation: navItem .45s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 45ms + 60ms);
  }
}
@keyframes navIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes navItem { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* wzmocniony gradient na kaflach oferty */
.offer-card__bg::after {
  background: linear-gradient(180deg, rgba(20,60,56,.28) 0%, rgba(20,60,56,.68) 42%, rgba(9,28,26,.94) 100%);
}

/* grafika w sekcji "o nas" */
.about-figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--surface);
  padding: 1rem;
  border: 1px solid var(--line);
}

/* pasek marek: wtopienie logotypów w tło */
.brands img { mix-blend-mode: multiply; }
[data-theme="dark"] .brands img { mix-blend-mode: normal; }


/* korekty mobilne hero */
@media (max-width: 900px) {
  .hero-figure { order: 0; }
  .hero-copy { order: -1; }
  .hero-inner { gap: 2rem; }
  .slider__dots { top: .8rem; bottom: auto; right: .8rem; }
  .dot { width: 20px; height: 5px; }
  .dot.is-active { width: 26px; }
  .slide figcaption { padding: 3rem 1.15rem 1.15rem; }
  .slide__label { font-size: 1rem; }
  .slide__text { font-size: .82rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .h1-sub { font-size: .5em; }
}

/* ============================================================
   Szybkie ścieżki (pasek pod hero)
   ============================================================ */
.quick { position: relative; z-index: 2; margin-top: -2.5rem; }
.quick__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quick__card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.quick__card:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-lg); }
.quick__icon {
  flex: 0 0 auto;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-050); color: var(--brand-700);
  font-size: 1.3rem;
}
.quick__body { display: grid; gap: .15rem; min-width: 0; }
.quick__body strong { font-family: var(--font-display); font-size: 1.02rem; }
.quick__body span { font-size: .84rem; color: var(--ink-2); }
.quick__go { margin-left: auto; color: var(--brand-600); transition: transform .25s var(--ease); }
.quick__card:hover .quick__go { transform: translateX(4px); }
@media (max-width: 980px) {
  .quick { margin-top: 0; padding-top: 1rem; }
  .quick__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Karuzela realizacji
   ============================================================ */
.carousel { margin-top: 2.5rem; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc(33.333% - .84rem));
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .5rem;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .carousel__track { scroll-behavior: auto; } }
.carousel__item { margin: 0; scroll-snap-align: start; }
.carousel__item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-card); border: 1px solid var(--line);
}
.carousel__item figcaption { margin-top: .7rem; font-size: .875rem; color: var(--ink-2); }

.carousel__nav {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.carousel__progress {
  flex: 1; height: 3px; border-radius: var(--r-pill);
  background: var(--line); overflow: hidden;
}
.carousel__progress span {
  display: block; height: 100%; width: 33%;
  background: var(--brand-600); border-radius: var(--r-pill);
  transition: width .25s var(--ease), transform .25s var(--ease);
}
.carousel__arrows { display: flex; gap: .5rem; }
.arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--card); color: var(--ink); cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.arrow:hover:not(:disabled) { border-color: var(--brand-600); color: var(--brand-700); background: var(--brand-050); }
.arrow:disabled { opacity: .35; cursor: default; }
@media (max-width: 980px) { .carousel__track { grid-auto-columns: minmax(0, calc(50% - .63rem)); } }
@media (max-width: 640px) { .carousel__track { grid-auto-columns: minmax(0, 82%); } }

/* poprawki: brak poziomego przewijania + wygląd kart produktów */
.segment input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
  margin: 0; padding: 0;
}
.hp {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link { clip-path: inset(50%); }
.skip-link:focus { clip-path: none; }
body { overflow-x: clip; }

.product__img { background: transparent; }
.product__img img { padding: 0; aspect-ratio: 4 / 5; object-fit: cover; }

/* tryb ciemny: przyciski mają jasne tło, więc etykieta musi być ciemna (kontrast AA) */
[data-theme="dark"] .btn { --btn-fg: #08211F; }[data-theme="dark"] .btn:hover { background: #8AD3C6; }[data-theme="dark"] .btn--ghost { --btn-fg: var(--ink); }[data-theme="dark"] .btn--light { --btn-bg: #E9F6F3; --btn-fg: #08211F; }[data-theme="dark"] .btn--outline { --btn-fg: #fff; }[data-theme="dark"] .cta-band { background: #10302C; }[data-theme="dark"] .site-footer { background: #0A1B1D; }


/* kontrast małego tekstu: nadtytuły i etykiety w ciemniejszym odcieniu marki */
.eyebrow, .page-hero__kicker, .product__kind { color: var(--brand-700); }
[data-theme="dark"] .eyebrow, [data-theme="dark"] .page-hero__kicker, [data-theme="dark"] .product__kind { color: var(--brand-500); }


/* na telefonach telefon i hamburger wyrównane do prawej krawędzi */
@media (max-width: 1080px) {
  .header-cta { margin-left: auto; }
}

/* logo z podpisem domeny potrzebuje trochę więcej miejsca na małych ekranach */
@media (max-width: 480px) {
  .brand img { height: 44px; }
}
