/* Self-hosted — no third-party requests, no visitor IP leaves our origin.
   Generated from Google Fonts css2 (variable ranges), latin + latin-ext only.
   latin-ext carries the Polish diacritics: ą ć ę ł ń ó ś ź ż */

/* latin-ext */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url(fonts/big-shoulders-display-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url(fonts/big-shoulders-display-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/jetbrains-mono-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/manrope-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/manrope-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   BARTEX — Sprzątanie Radom · prototype
   Industrial Premium · charcoal / amber · "Zjazd" concept
   ============================================================ */

:root {
  --bg: #141518;
  --bg-panel: #1B1D21;
  --bg-soft: #232529;
  --text: #F4F3F0;
  --text-muted: #C4C6C9; /* was #9A9C9F — lifted for sunlight legibility; gray-on-dark is first to vanish in glare */
  --accent: #E8821E;
  --accent-bright: #FFA94D;
  --accent-dim: rgba(232, 130, 30, .14);
  --border: #2E3035;
  --radius: 6px;
  --pad: clamp(1.25rem, 4.5vw, 5rem);
  --gap-sec: clamp(5rem, 11vw, 10rem);
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.22, .9, .28, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Outdoor / OS "Increase Contrast" — dark themes lose worst in sun; push muted copy toward white,
   thicken body weight, and solidify the hero scrim so text-over-photo survives glare. */
@media (prefers-contrast: more) {
  :root { --text-muted: #E2E3E5; --border: #4A4D53; }
  body { font-weight: 500; }
  .hero__fig::after { background: linear-gradient(0deg, var(--bg) 12%, rgba(20,21,24,.82) 55%, rgba(20,21,24,.4) 85%) !important; }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--accent); color: #16130D; }

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 60; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .grain { animation: grain 9s steps(10) infinite; }
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 20% { transform: translate(-30px,12px) }
  40% { transform: translate(18px,-26px) } 60% { transform: translate(-12px,30px) }
  80% { transform: translate(26px,8px) }
}

/* ---------- type helpers ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 1em; flex-wrap: wrap;
}
.kicker::before { content: ""; width: 2.2em; height: 1px; background: var(--accent); flex: none; }
.kicker__alt { color: var(--text-muted); }

h1, h2, h3, .hero__head2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .94;
  letter-spacing: .005em;
}
h2 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
h2 em, h1 em, .pitch__line em { font-style: normal; color: var(--accent); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }

.sec-head { display: grid; gap: 1.1rem; max-width: 60rem; }

/* rotating city in spec h2 — grid-stacked so the line never reflows */
.city-swap { display: inline-grid; justify-items: start; vertical-align: bottom; }
.city-swap .city {
  grid-area: 1 / 1;
  opacity: 0; transform: translateY(.35em); filter: blur(5px);
  transition: opacity .38s var(--ease), transform .38s var(--ease), filter .38s var(--ease);
}
.city-swap .city.is-on { opacity: 1; transform: none; filter: none; }
.city-swap .city.is-out { opacity: 0; transform: translateY(-.35em); filter: blur(5px); }
.sec-head--center { justify-items: center; text-align: center; margin-inline: auto; }
.sec-sub { color: var(--text-muted); max-width: 46ch; }
.sec-head--center .sec-sub { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 1.05em 1.7em; border-radius: var(--radius);
  min-height: 48px;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease);
}
.btn--solid { background: var(--accent); color: #16130D; }
.btn--solid:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn--ghost { color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 2.2rem;
  padding: .9rem var(--pad);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  letter-spacing: .04em; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: .45em;
}
.nav__mark {
  width: .55em; height: .55em; background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
}
.nav__links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav__links a {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  transition: color .3s;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em;
  color: var(--text); text-decoration: none;
  border: 1px solid var(--border); border-radius: 99px;
  padding: .55em 1.1em; display: inline-flex; align-items: center; gap: .55em;
  transition: border-color .3s, color .3s;
}
.nav__cta:hover { border-color: var(--accent); color: var(--accent); }
.nav__cta-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4CAF6E;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,110,.5) }
  60% { box-shadow: 0 0 0 7px rgba(76,175,110,0) }
}
.nav__burger { display: none; }

.mmenu {
  position: fixed; inset: 0; z-index: 49;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(18px);
  padding: 6.5rem var(--pad) 2rem;
}
.mmenu nav { display: grid; gap: .4rem; }
.mmenu a {
  font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700; text-transform: uppercase; text-decoration: none;
  color: var(--text); padding: .35em 0; border-bottom: 1px solid var(--border);
}
.mmenu a:active { color: var(--accent); }
.mmenu__tel { color: var(--accent) !important; }

/* ============================================================
   HERO — ZJAZD
   ============================================================ */
.hero { position: relative; }
.hero--play { height: 450vh; } /* 4 stations × ~113vh dwell (was 340vh / 3) */
.hero--play .hero__stage {
  position: sticky; top: 0; height: 100vh; height: 100dvh;
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 96px) minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: 100%;
  overflow: clip;
}
.hero__stage {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(232,130,30,.07), transparent 55%),
    var(--bg);
}

/* rail */
.hero__rail {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 7.5rem 0 2.5rem;
  border-right: 1px solid var(--border);
  position: relative; z-index: 6;
}
.hero__alt {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  color: var(--accent);
  writing-mode: vertical-rl; text-orientation: mixed;
  letter-spacing: .08em;
  margin-bottom: 1.6rem;
  min-height: 4.5em;
}
.hero__alt em { font-style: normal; color: var(--text-muted); margin-top: .4em; }
.hero__rope { flex: 1; width: 24px; min-height: 0; }
.rope-bg { stroke: var(--border); stroke-width: 1.5; }
.rope-done { stroke: var(--accent); stroke-width: 2; stroke-dasharray: 600; stroke-dashoffset: 600; }
.rope-dot__core { fill: var(--accent); }
.rope-dot__halo { fill: none; stroke: var(--accent); stroke-width: 1; opacity: .5; }
.hero__stations {
  display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.6rem;
}
.hero__stations .st {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .22em;
  color: var(--text-muted);
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: color .4s;
}
.hero__stations .st.is-on { color: var(--accent); }

/* copy stations — desktop: stacked in same cell */
.hero__copy {
  grid-column: 2; grid-row: 1;
  align-self: center;
  padding: 7rem var(--pad) 4rem clamp(1.5rem, 3.5vw, 4rem);
  display: grid; gap: clamp(1.2rem, 2.6vh, 2rem);
  max-width: 44rem;
  position: relative; z-index: 5;
}
.hero__h1 {
  font-size: clamp(3rem, 7.2vw, 7rem);
  font-weight: 800;
}
.hero__head2 { font-size: clamp(2.6rem, 5.6vw, 5.2rem); }
.hero__sub { color: var(--text-muted); max-width: 42ch; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__hint {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: .8em;
}
.hero__hint-arrow { color: var(--accent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0%,100% { transform: translateY(-3px) } 55% { transform: translateY(4px) } }

.hero__trust {
  list-style: none; display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 1.4rem; margin-top: .4rem;
}
.hero__trust li { display: grid; gap: .15rem; }
.hero__trust strong {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700; color: var(--accent); letter-spacing: .02em;
}
.hero__trust span {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}

/* visuals — desktop: stacked in right cell */
.hero__fig {
  grid-column: 3; grid-row: 1;
  position: relative; overflow: clip; margin: 0;
  z-index: 1;
}
.hero__fig img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}
.hero__fig::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 26%),
              linear-gradient(0deg, rgba(20,21,24,.45), transparent 40%);
}
.figtag {
  position: absolute; right: 1.1rem; bottom: 1rem; z-index: 2;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em;
  color: var(--text); opacity: .75;
  background: rgba(20,21,24,.55); backdrop-filter: blur(6px);
  padding: .45em .8em; border: 1px solid var(--border); border-radius: 3px;
}

/* play-mode initial states (JS choreographs from here) */
.hero--play .hero__copy--2, .hero--play .hero__copy--3, .hero--play .hero__copy--4 { opacity: 0; visibility: hidden; }
.hero--play .hero__fig--2, .hero--play .hero__fig--3, .hero--play .hero__fig--4 { opacity: 0; }
.hero--play .kicker__alt { display: none; }

/* static fallback (no-JS, prefers-reduced-motion) — stacked stations, all widths */
.hero:not(.hero--play) .hero__stage {
  display: flex; flex-direction: column;
  padding-top: 4.6rem;
}
.hero:not(.hero--play) .hero__rail { display: none; }
.hero:not(.hero--play) .hero__copy {
  padding: clamp(2.2rem, 7vw, 3.5rem) var(--pad);
  max-width: 54rem;
}
.hero:not(.hero--play) .hero__copy--1 { order: 1; padding-top: 3rem; }
.hero:not(.hero--play) .hero__fig--1  { order: 2; }
.hero:not(.hero--play) .hero__copy--2 { order: 3; }
.hero:not(.hero--play) .hero__fig--2  { order: 4; }
.hero:not(.hero--play) .hero__copy--3 { order: 5; }
.hero:not(.hero--play) .hero__fig--3  { order: 6; }
.hero:not(.hero--play) .hero__copy--4 { order: 7; }
.hero:not(.hero--play) .hero__fig--4  { order: 8; }
.hero:not(.hero--play) .hero__fig { aspect-ratio: 3 / 2; max-height: 60vh; }
.hero:not(.hero--play) .hero__fig::after { background: linear-gradient(0deg, var(--bg), transparent 30%); }
.hero:not(.hero--play) .hero__hint { display: none; }
.kicker__alt {
  display: inline-block; color: var(--accent);
  border: 1px solid var(--accent-dim); background: var(--accent-dim);
  border-radius: 3px; padding: .2em .6em; margin-right: .4em;
}

/* play-mode on mobile: full-bleed visual, copy overlaid, slim rail */
@media (max-width: 899px) {
  .hero--play .hero__stage {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .hero--play .hero__rail {
    padding: 5.4rem 0 1.6rem;
    background: color-mix(in srgb, var(--bg) 55%, transparent);
    backdrop-filter: blur(2px);
  }
  .hero--play .hero__alt { font-size: .8rem; margin-bottom: 1.1rem; min-height: 3.8em; }
  .hero--play .hero__stations { gap: .85rem; margin-top: 1.1rem; }
  .hero--play .hero__stations .st { font-size: .52rem; }
  .hero--play .hero__fig {
    grid-column: 1 / -1; grid-row: 1;
    z-index: 1;
  }
  .hero--play .hero__fig img { height: 100%; }
  .hero--play .hero__fig::after {
    background: linear-gradient(0deg, var(--bg) 6%, rgba(20,21,24,.66) 42%, rgba(20,21,24,.18) 75%);
  }
  .hero--play .figtag { top: 4.6rem; bottom: auto; right: .9rem; }
  .hero--play .hero__copy {
    grid-column: 2; grid-row: 1;
    align-self: end; z-index: 5;
    padding: 0 var(--pad) clamp(3.2rem, 9vh, 5rem) 1.1rem;
    gap: clamp(.85rem, 1.8vh, 1.3rem);
    max-width: none;
  }
  .hero--play .hero__h1 { font-size: clamp(2.5rem, 11.5vw, 3.6rem); }
  .hero--play .hero__head2 { font-size: clamp(2.1rem, 9.5vw, 3rem); }
  .hero--play .hero__sub { font-size: .94rem; }
  .hero--play .hero__trust { gap: 1.1rem; padding-top: 1rem; }
  .hero--play .hero__hint { display: none; }
}

/* ============================================================
   PITCH
   ============================================================ */
.pitch {
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
}
.pitch__line {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.45rem, 3.1vw, 2.6rem); line-height: 1.35;
  max-width: 56rem; margin-inline: auto;
  text-wrap: balance;
}

/* ============================================================
   SPECJALIZACJE
   ============================================================ */
.spec { padding: var(--gap-sec) var(--pad); border-top: 1px solid var(--border); }
.spec .sec-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.spec__wrap {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.spec__list { list-style: none; }
.spec__row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.2rem) .4rem;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.spec__list .spec__row:first-child { border-top: 1px solid var(--border); }
.spec__row:hover { background: linear-gradient(90deg, var(--accent-dim), transparent 65%); padding-left: 1rem; }
.spec__idx {
  font-family: var(--font-mono); font-size: .78rem; color: var(--accent);
  padding-top: .45rem;
}
.spec__body { display: grid; gap: .5rem; }
.spec__body p { color: var(--text-muted); max-width: 46ch; }
.spec__thumb { display: none; }
.spec__preview {
  position: sticky; top: 14vh;
  aspect-ratio: 4 / 5; overflow: clip; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.spec__preview img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .45s var(--ease), transform .8s var(--ease);
  filter: saturate(.92) contrast(1.04);
}
.spec__preview.is-switching img { opacity: 0; }

@media (max-width: 899px) {
  .spec__wrap { grid-template-columns: 1fr; }
  .spec__preview { display: none; }
  .spec__row { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .spec__thumb {
    display: block; grid-column: 1 / -1; margin-top: 1.1rem;
    aspect-ratio: 16 / 9; overflow: clip; border-radius: var(--radius);
  }
  .spec__thumb img { width: 100%; height: 100%; object-fit: cover; }
}

/* ============================================================
   WYSOKOŚCI
   ============================================================ */
.high {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  align-items: center;
}
.high__media figure { position: relative; margin: 0; }
.high__media img {
  border-radius: var(--radius); border: 1px solid var(--border);
  filter: saturate(.92) contrast(1.04);
}
.high__ruler {
  position: absolute; top: 0; bottom: 0; left: -2.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono); font-size: .6rem; color: var(--text-muted);
  border-left: 1px solid var(--border); padding-left: .6rem;
}
.high__ruler span { position: relative; }
.high__ruler span::before {
  content: ""; position: absolute; left: -0.85rem; top: 50%;
  width: .5rem; height: 1px; background: var(--accent);
}
.high__body { display: grid; gap: clamp(1.8rem, 4vw, 2.8rem); }
.high__list { list-style: none; display: grid; gap: 0; }
.high__list li {
  display: grid; grid-template-columns: minmax(11.5rem, auto) 1fr; gap: 1.4rem;
  align-items: baseline;
  padding: 1.15rem 0; border-bottom: 1px solid var(--border);
}
.high__list li:first-child { border-top: 1px solid var(--border); }
.high__tag {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; color: var(--accent);
}
.high__list p { color: var(--text-muted); font-size: .98rem; }

@media (max-width: 899px) {
  .high { grid-template-columns: 1fr; }
  .high__media { order: 2; padding-left: 2.6rem; }
  .high__list li { grid-template-columns: 1fr; gap: .3rem; }
}

/* ============================================================
   MEDALE
   ============================================================ */
.medals {
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(70% 60% at 50% 110%, rgba(232,130,30,.08), transparent 60%),
    var(--bg-panel);
}
.medals .sec-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); max-width: none; }
.medals .sec-head h2 { font-size: clamp(2.6rem, 7.5vw, 6.5rem); }
.medals__track { position: relative; max-width: 72rem; margin-inline: auto; }
.medals__line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: var(--border);
}
.medals__line-fill {
  display: block; height: 100%; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
}
.medals__row {
  list-style: none; display: grid;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
}
.medal { display: grid; justify-items: center; gap: .7rem; text-align: center; }
.medal__year { font-family: var(--font-mono); font-size: .72rem; color: var(--text-muted); }
.medal__node {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--accent); background: var(--bg-panel);
  position: relative; z-index: 2;
}
.medal__tier {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .05em;
  font-size: clamp(.8rem, 1.4vw, 1.05rem); color: var(--text);
}
.medal--gold .medal__node {
  width: 19px; height: 19px; background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-dim), 0 0 26px rgba(232,130,30,.5);
}
.medal--gold .medal__tier { color: var(--accent); font-size: clamp(1rem, 1.8vw, 1.35rem); }
.medal[data-tier="srebro"] .medal__node { border-color: #B9BCC2; }
.medal[data-tier="braz"]  .medal__node { border-color: #B0793F; }
.medals__src {
  margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .medals__line { left: 9px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .medals__line-fill { transform-origin: top center; width: 100%; height: 100%; transform: scaleY(0); }
  .medals__row { grid-template-columns: 1fr; gap: 1.6rem; }
  .medal {
    grid-template-columns: auto auto 1fr; justify-items: start; align-items: center;
    gap: 1.1rem;
  }
  .medal__node { order: -1; margin-left: 3px; }
}

/* ============================================================
   OPINIE
   ============================================================ */
.reviews { padding: var(--gap-sec) var(--pad); border-top: 1px solid var(--border); }
.reviews .sec-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.reviews h2 { display: flex; align-items: center; gap: .35em; }
.stars { color: var(--accent); font-size: .55em; letter-spacing: .15em; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 1.2rem;
}
.review {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: grid; gap: 1.6rem; align-content: space-between;
  position: relative;
}
.review::before {
  content: "„"; position: absolute; top: .4rem; right: 1.2rem;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--accent-dim);
}
.review p { font-size: 1.05rem; font-weight: 500; }
.review footer { display: flex; align-items: baseline; gap: .9em; }
.review cite { font-style: normal; font-weight: 700; }
.review footer span {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ============================================================
   O FIRMIE
   ============================================================ */
.about {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  align-items: center;
}
.about__media img {
  border-radius: var(--radius); border: 1px solid var(--border);
  filter: saturate(.92) contrast(1.04);
}
.about__body { display: grid; gap: 1.4rem; }
.about__body > p { color: var(--text-muted); max-width: 56ch; }
.about__stats {
  list-style: none; display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 1.6rem; margin-top: .6rem;
}
.about__stats li { display: grid; gap: .2rem; }
.about__stats strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem); color: var(--accent); line-height: 1;
}
.about__stats span {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 899px) {
  .about { grid-template-columns: 1fr; }
  /* stats: all 3 in one row on mobile — numbers shrink, labels wrap inside their item */
  .about__stats { flex-wrap: nowrap; justify-content: space-between; gap: 1rem; }
  .about__stats li { min-width: 0; }
  .about__stats strong { font-size: clamp(1.9rem, 6.5vw, 2.6rem); }
  .about__stats span { font-size: .56rem; }
}

/* ============================================================
   OBSZAR
   ============================================================ */
.area {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  align-items: center;
}
.area__body { display: grid; gap: clamp(1.8rem, 4vw, 2.6rem); }
.area__cities { list-style: none; display: grid; gap: 0; }
.area__cities li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.area__cities li:first-child { border-top: 1px solid var(--border); }
.area__city { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: .04em; }
.area__cities li:first-child .area__city { color: var(--accent); }
.area__dist { font-family: var(--font-mono); font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; }
.area__map svg { width: 100%; height: auto; }
.area__map .ring { fill: none; stroke: var(--border); stroke-width: 1; }
.area__map .cross { stroke: var(--border); stroke-width: .5; stroke-dasharray: 2 6; }
.area__map .city { fill: var(--text-muted); }
.area__map .city--pulse { fill: var(--accent); }
.area__map text {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  fill: var(--text-muted);
}
@media (prefers-reduced-motion: no-preference) {
  .area__map .city--pulse { animation: mapPulse 2.6s var(--ease) infinite; transform-origin: 240px 240px; }
}
@keyframes mapPulse {
  0%,100% { filter: drop-shadow(0 0 0 rgba(232,130,30,.7)) }
  50% { filter: drop-shadow(0 0 9px rgba(232,130,30,.9)) }
}
@media (max-width: 899px) {
  .area { grid-template-columns: 1fr; }
  .area__map { max-width: 26rem; margin-inline: auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
/* ============================================================
   WYCENA — oględziny
   ============================================================ */
/* wysokości h2 — glyphs stretched tall (scaleY doesn't affect layout;
   margin-top gives the stretched text headroom above its box, 1- or 2-line) */
.high__h2 {
  transform: scaleY(1.45);
  transform-origin: left bottom;
  margin-top: .9em;
}

.quote {
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  display: grid; justify-items: center;
  gap: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}
.quote__steps {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  font-family: var(--font-mono); font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.quote__steps li { display: flex; align-items: center; gap: .6em; }
.quote__steps li span { color: var(--accent); }
.quote__steps li + li::before { content: "→"; color: var(--text-muted); margin-right: clamp(1.2rem, 3vw, 2.6rem); }
@media (max-width: 600px) {
  .quote__steps { flex-direction: column; gap: .9rem; }
  .quote__steps li + li::before { content: none; }
}

.faq { padding: var(--gap-sec) var(--pad); border-top: 1px solid var(--border); }
.faq .sec-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.faq__list { max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem .2rem;
  font-weight: 700; font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__ico {
  flex: none; width: 30px; height: 30px; position: relative;
  border: 1px solid var(--border); border-radius: 50%;
  transition: transform .4s var(--ease), border-color .3s;
}
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent);
}
.faq__ico::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__ico::after { width: 1.5px; height: 11px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__ico { transform: rotate(45deg); border-color: var(--accent); }
.faq__item p { color: var(--text-muted); padding: 0 .2rem 1.5rem; max-width: 60ch; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  padding: var(--gap-sec) var(--pad);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(90% 80% at 50% 120%, rgba(232,130,30,.1), transparent 60%),
    var(--bg);
}
.contact__inner { display: grid; gap: clamp(1.6rem, 3.5vw, 2.6rem); max-width: 64rem; }
.contact__tel {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 9.5rem); line-height: .95;
  letter-spacing: .01em;
  color: var(--text); text-decoration: none;
  transition: color .35s var(--ease), letter-spacing .5s var(--ease);
  width: fit-content;
}
.contact__tel:hover { color: var(--accent); letter-spacing: .03em; }
.contact__note { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
.contact__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 1.6rem; border-top: 1px solid var(--border); padding-top: 2rem;
}
.contact__grid > div { display: grid; gap: .5rem; align-content: start; }
.contact__label {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em;
  color: var(--accent);
}
.contact__grid a, .contact__grid address {
  font-style: normal; color: var(--text); text-decoration: none;
  font-weight: 500; overflow-wrap: anywhere;
}
.contact__grid a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem var(--pad) calc(2.2rem + env(safe-area-inset-bottom));
  display: grid; gap: 1rem;
}
.footer__row { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.footer__brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: .45em;
}
.footer p { font-size: .8rem; color: var(--text-muted); }
.footer__legal { font-family: var(--font-mono); font-size: .64rem !important; letter-spacing: .04em; }
.footer__legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; transition: color .3s var(--ease); }
.footer__legal a:hover { color: var(--accent-bright); }

/* ============================================================
   CALLBAR (mobile sticky)
   ============================================================ */
.callbar {
  position: fixed; left: .8rem; right: .8rem;
  bottom: calc(.8rem + env(safe-area-inset-bottom));
  z-index: 48;
  display: none; align-items: center; justify-content: center; gap: .7em;
  background: var(--accent); color: #16130D;
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: 1.05em; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transform: translateY(130%); transition: transform .45s var(--ease);
}
.callbar.is-visible { transform: translateY(0); }
.callbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #14601F; animation: pulse 2.2s infinite; }
@media (max-width: 899px) { .callbar:not([hidden]) { display: flex; } }

/* ============================================================
   REVEALS + responsive nav
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); }
.no-js .reveal, .reduced .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media (max-width: 899px) {
  .nav { gap: 1rem; padding: .8rem var(--pad); }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: grid; gap: 6px; margin-left: auto;
    background: none; border: 0; padding: .7rem .35rem; cursor: pointer;
  }
  .nav__burger span {
    width: 26px; height: 2px; background: var(--text);
    transition: transform .35s var(--ease), opacity .3s;
  }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
