/* ============================================
   Targosz Gajda — Prototype v3
   Sans-only, editorial, bez ozdobnej typografii
   ============================================ */

:root {
  --off-white: #FAF9F7;
  --warm-gray: #F2F2F0;
  --soft-gray: #D9D9D6;
  --line-subtle: #E6E6E3;
  --line-medium: #D0D0CC;
  --charcoal: #1A1D1F;
  --charcoal-muted: #5A5E62;
  --charcoal-soft: #8A8E92;
  --deep-teal: #0E2F2E;
  --muted-petrol: #1A3F3E;
  --accent-dot: #B8964D;

  --container: 1280px;
  --container-narrow: 880px;

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --ff-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================================
   Legal pages — privacy policy, cookies, terms
   ============================================ */
.legal {
  padding: 72px 0 120px;
}
.legal-toc {
  font-size: 13px;
  color: var(--charcoal-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin: 56px 0 18px;
  line-height: 1.3;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-muted);
  margin-bottom: 16px;
}
.legal p:last-child { margin-bottom: 0; }
.legal ol, .legal ul {
  margin: 16px 0 20px 22px;
  padding: 0;
}
.legal ol li, .legal ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-muted);
  margin-bottom: 10px;
  padding-left: 6px;
}
.legal ol ol, .legal ol ul, .legal ul ul, .legal ul ol {
  margin: 10px 0 6px 20px;
}
.legal ol ol li, .legal ul ul li {
  font-size: 15px;
  margin-bottom: 6px;
}
.legal a {
  color: var(--deep-teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}
.legal a:hover {
  color: var(--muted-petrol);
}
.legal strong {
  color: var(--charcoal);
  font-weight: 500;
}
.legal-meta {
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line-subtle);
}
.legal-meta a {
  color: var(--charcoal-muted);
}

/* ============================================
   Page transition — sliding curtain between subpages
   ============================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--deep-teal);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 320ms;
}
.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.page-transition.is-instant { transition: none !important; }
.page-transition-mark {
  width: clamp(56px, 6vw, 80px);
  aspect-ratio: 1 / 1;
  color: var(--accent-dot);
  fill: currentColor;
  opacity: 0.9;
  animation: page-mark-pulse 1400ms cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes page-mark-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none !important; }
  .page-transition-mark { animation: none; }
}

/* ============================================
   Website opener — first-load splash
   ============================================ */
.opener {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--deep-teal);
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: opener-out 700ms cubic-bezier(0.65, 0, 0.35, 1) 1300ms forwards;
  will-change: opacity, transform;
}
.opener-mark {
  width: clamp(120px, 14vw, 160px);
  aspect-ratio: 1 / 1;
  color: var(--accent-dot);
  fill: currentColor;
  animation: opener-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(184, 150, 77, 0.25));
}
.opener.is-skipped { display: none !important; animation: none !important; }
body.is-opening { overflow: hidden; }

@keyframes opener-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes opener-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}
@media (prefers-reduced-motion: reduce) {
  .opener { animation: none; opacity: 0; pointer-events: none; display: none; }
  .opener-mark { animation: none; }
}
/* Account for the sticky pill header when jumping to anchored sections. */
section[id], div[id^="proces"], div[id^="kontakt"] { scroll-margin-top: 120px; }
@media (max-width: 960px) {
  section[id], div[id^="proces"], div[id^="kontakt"] { scroll-margin-top: 100px; }
}
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Typography (sans-only)
   ============================================ */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}
.overline::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-dot);
}
.overline.on-dark { color: rgba(255,255,255,0.7); }

h1, .h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--charcoal);
}
h2, .h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.025em;
}
h3, .h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal-muted);
  font-weight: 400;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: #fff; }
.btn-primary:hover { background: var(--deep-teal); }
.btn-secondary {
  background: #fff;
  color: var(--charcoal);
  border: 1px solid var(--line-medium);
}
.btn-secondary:hover { border-color: var(--charcoal); }
.btn-ghost {
  padding-left: 0; padding-right: 0;
  color: var(--charcoal);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--deep-teal); }
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 220ms ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }
.on-dark .btn-primary { background: #fff; color: var(--charcoal); }
.on-dark .btn-primary:hover { background: var(--off-white); }
.on-dark .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.on-dark .btn-secondary:hover { border-color: #fff; }

/* ============================================
   Floating Header (pill) — bigger, lighter, more polot
   ============================================ */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 50;
  padding: 0 12px;
}
.header-pill {
  position: relative;
  width: 100%;
  max-width: 2400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-full);
  padding: 14px 16px 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 40px rgba(20, 24, 28, 0.06), 0 1px 0 rgba(255,255,255,0.6) inset;
  will-change: max-width;
  /* Return to full (scrolling up) — slower, luxurious ease-out. */
  transition:
    max-width 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 800ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Compact state — pill narrows centered, brand mark drifts toward middle,
   nav stays put (absolutely centered), utility drifts in from the right.
   Vertical position and padding stay constant so nothing jumps. */
.site-header.is-compact .header-pill {
  max-width: 1240px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px rgba(20, 24, 28, 0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
  /* Going compact (scrolling down) — quicker, snappier. */
  transition:
    max-width 700ms cubic-bezier(0.32, 0.72, 0, 1),
    background-color 500ms ease,
    box-shadow 500ms ease;
}
.site-header.is-compact .brand { gap: 0; }
.site-header.is-compact .brand-text {
  max-width: 0;
  opacity: 0;
  transform: translateX(-12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  /* Return — slower, gentler. */
  transition: gap 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-compact .brand {
  /* Going compact — quicker. */
  transition: gap 650ms cubic-bezier(0.32, 0.72, 0, 1);
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--deep-teal);
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 6px;
  overflow: hidden;
  max-width: 240px;
  opacity: 1;
  transform: translateX(0);
  will-change: max-width, opacity, transform;
  /* Return — slow, luxurious reveal of the wordmark. */
  transition:
    max-width 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 150ms,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-compact .brand-text {
  /* Going compact — original quicker tuck. */
  transition:
    max-width 650ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 650ms cubic-bezier(0.32, 0.72, 0, 1);
}
.brand-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  white-space: nowrap;
}
.brand-tagline {
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
  white-space: nowrap;
}
.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Return — gentle drift back to center. */
  transition: left 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-compact .main-nav {
  left: 40%;
  /* Going compact — snappier shift. */
  transition: left 700ms cubic-bezier(0.32, 0.72, 0, 1);
}
.main-nav ul { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 10px 0;
  transition: color 180ms ease;
  position: relative;
}
.main-nav a:hover { color: var(--deep-teal); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 1px;
  background: var(--deep-teal);
  transition: width 240ms ease, left 240ms ease;
}
.main-nav a:hover::after { width: 100%; left: 0; }
.main-nav a.is-active { color: var(--deep-teal); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--deep-teal);
}

.header-utility {
  display: flex; align-items: center;
  gap: 18px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 180ms ease;
  letter-spacing: 0.01em;
}
.header-phone:hover { color: var(--deep-teal); }
.header-phone svg {
  width: 14px; height: 14px;
  color: var(--charcoal-muted);
}
.header-divider {
  width: 1px; height: 24px;
  background: var(--line-subtle);
}
.header-cta {
  padding: 14px 22px;
  font-weight: 500;
}

/* ============================================
   Hero — szerszy i wyższy
   ============================================ */
.hero {
  padding: 12px 12px 0;
  margin-top: 12px;
}
.hero-frame {
  position: relative;
  width: 100%;
  height: clamp(640px, 92vh, 900px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1a1d1f;
}
.hero-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 28, 0.12) 0%, rgba(20, 24, 28, 0.0) 30%, rgba(20, 24, 28, 0.6) 100%);
}

/* Brand-coloured hero — deep-teal field with a large gold TG monogram
   sitting on the right. Replaces the photo until we have brand imagery. */
.hero-frame--brand {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(184, 150, 77, 0.10), transparent 55%),
    var(--deep-teal);
}
.hero-frame--brand::after { display: none; }
.hero-ornament {
  position: absolute;
  top: 50%;
  right: -6%;
  width: clamp(420px, 52%, 720px);
  height: auto;
  transform: translateY(-50%);
  color: var(--accent-dot);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

/* Sub-page hero — compact green band used on inner pages. */
.hero-frame--page {
  background:
    radial-gradient(ellipse at 85% 60%, rgba(184, 150, 77, 0.10), transparent 55%),
    var(--deep-teal);
  height: clamp(360px, 50vh, 480px);
  display: flex;
  align-items: end;
}
.hero-frame--page .hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: stretch;
}
.hero-frame--page .hero-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
.hero-frame--page .hero-overline::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-dot);
}
.hero-frame--page .hero-title {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04;
  max-width: 920px;
  margin-bottom: 22px;
}
.hero-frame--page .hero-page-lead {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 620px;
}
/* Decorative section icon in the bottom-right of the page hero. */
.hero-page-icon {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: clamp(280px, 36%, 460px);
  aspect-ratio: 1 / 1;
  color: var(--accent-dot);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.hero-page-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-page-icon svg * { vector-effect: non-scaling-stroke; }
@media (max-width: 720px) {
  .hero-page-icon { width: 240px; opacity: 0.15; bottom: -8%; right: -8%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: clamp(32px, 5vw, 72px);
  z-index: 2;
}
.hero-bottom {
  width: 100%;
  display: flex; justify-content: space-between; align-items: end;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-title {
  color: #fff;
  max-width: 880px;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
}
.hero-meta {
  text-align: right;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-year {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-meta-desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
  max-width: 240px;
  margin-left: auto;
}

/* ============================================
   Intro — pojedynczy akapit, sans only
   ============================================ */
.intro {
  padding: 120px 0 80px;
  text-align: center;
}
.intro .overline { margin-bottom: 28px; }
.intro-text {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.022em;
  color: var(--charcoal);
  font-weight: 300;
  max-width: 880px;
  margin: 0 auto;
}
.intro-text .muted { color: var(--charcoal-soft); }

/* ============================================
   Clients strip
   ============================================ */
.clients {
  padding: 64px 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.clients-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}
.clients-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  display: flex; align-items: center; gap: 10px;
}
.clients-label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-dot);
}
.clients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
}
.client-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.client-group-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-group-logo img {
  max-height: 56px;
  width: auto;
  max-width: 170px;
  display: block;
  filter: grayscale(1) opacity(0.6);
  transition: filter 240ms ease;
}
.client-group:hover .client-group-logo img { filter: grayscale(0) opacity(1); }
.client-group-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal-soft);
  line-height: 1.4;
  transition: color 200ms ease;
}
.client-group:hover .client-group-name { color: var(--charcoal); }
.client-group-inveno {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e6e6e;
  opacity: 0.6;
  transition: color 240ms ease, opacity 240ms ease;
}
.client-group-inveno svg {
  height: 36px;
  width: auto;
  display: block;
}
.client-group:hover .client-group-inveno { color: #5DE39B; opacity: 1; }

/* Secondary clients — listed text only, below logos */
.clients-secondary {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--line-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
}
.clients-secondary-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  opacity: 0.7;
  margin-right: 4px;
}
.clients-secondary span:not(.clients-secondary-label) {
  transition: color 200ms ease;
  cursor: default;
}
.clients-secondary span:not(.clients-secondary-label):hover {
  color: var(--charcoal);
}

/* Inveno monogram — inline SVG with fill="currentColor".
   Default: muted gray (matches grayscale treatment of other logos).
   Hover: Inveno's mint-green accent. */
.client-logo--inveno {
  color: #6e6e6e;
  opacity: 0.55;
  transition: color 240ms ease, opacity 240ms ease;
}
.client-logo--inveno svg {
  width: 36px;
  height: 36px;
  display: block;
}
.client-logo--inveno:hover {
  color: #5DE39B;
  opacity: 1;
}

/* ============================================
   Specjalizacje — editorial list
   ============================================ */
.specs { padding: 120px 0; }
.specs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.specs-head .overline { margin-bottom: 20px; }
.specs-head h2 { max-width: 540px; }
.specs-head p {
  color: var(--charcoal-muted);
  max-width: 460px;
  font-size: 16px;
  line-height: 1.6;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.spec-card {
  position: relative;
  background: var(--deep-teal);
  border: 1px solid var(--muted-petrol);
  border-radius: 24px;
  padding: 36px 36px 32px;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: background-color 360ms ease, border-color 360ms ease, transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.spec-card:hover {
  background: var(--muted-petrol);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.spec-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.spec-title {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: #fff;
  margin-bottom: 10px;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.spec-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  max-width: 260px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.spec-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  transition: color 200ms ease;
}
.spec-card:hover .spec-link { color: #fff; }
.spec-link svg { width: 12px; height: 12px; transition: transform 240ms ease; }
.spec-card:hover .spec-link svg { transform: translate(3px, -3px); }

/* Large thin-line decorative icon in bottom-right.
   Brand deep-teal at low opacity — reads as a subtle green wash.
   No rotation on hover; just a calm opacity bloom. */
.spec-deco {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 260px;
  height: 260px;
  color: #fff;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1);
}
.spec-card:hover .spec-deco { opacity: 0.28; }
.spec-deco svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-width: 1.25;
}
/* Keep stroke crisp at any render size — Lucide icons use 24×24 viewBox. */
.spec-deco svg * { vector-effect: non-scaling-stroke; }

/* ============================================
   Process list — vertical timeline (e.g. 7-step
   windykacja methodology). Numbered nodes with
   connecting line, content on the right.
   ============================================ */
.process-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.process-head .overline { margin-bottom: 24px; }
.process-head h2 { margin-bottom: 20px; }
.process-head p {
  color: var(--charcoal-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}
.process {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 36px;
  align-items: center;
}
.process-step::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: -48px;
  width: 1px;
  background: var(--line-medium);
  z-index: 0;
}
.process-step:first-child::before { top: 50%; }
.process-step:last-child::before { bottom: 50%; }
.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.process-step-content {
  /* No vertical padding — the grid centers content against the circle. */
}

/* ============================================
   Copy-to-clipboard row (e.g. bank account)
   ============================================ */
.copy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--line-subtle);
  border-radius: 12px;
}
.copy-row code {
  flex: 1;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: none;
  padding: 0;
}
.iban {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-variant-numeric: tabular-nums;
}
.copy-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line-medium);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--charcoal-muted);
  flex-shrink: 0;
  position: relative;
  transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
}
.copy-btn:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.copy-btn:active { transform: scale(0.96); }
.copy-btn svg { width: 16px; height: 16px; display: block; }
.copy-btn .icon-check { display: none; }
.copy-btn.is-copied {
  border-color: var(--deep-teal);
  color: var(--deep-teal);
  background: #E4ECE3;
}
.copy-btn.is-copied .icon-copy { display: none; }
.copy-btn.is-copied .icon-check { display: block; }

/* ============================================
   Hours / schedule — clean two-line typography
   ============================================ */
.hours {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-subtle);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-subtle);
  gap: 24px;
}
.hours-day {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
}
.hours-time {
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hours-row--closed .hours-time {
  font-size: 14px;
  color: var(--charcoal-muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

/* ============================================
   Contact form
   ============================================ */
.contact-card--form {
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  gap: 56px;
}
.form {
  display: grid;
  gap: 18px;
}
.form-field { display: grid; gap: 8px; }
.form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.form-label-hint {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.55;
  font-weight: 400;
  margin-left: 6px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 200ms ease, background-color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.32); }
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
select.form-control option {
  background: var(--charcoal);
  color: #fff;
}
.form-consent {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  cursor: pointer;
  padding: 4px 0;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent-dot);
}
.form-submit { justify-self: start; margin-top: 4px; }

@media (max-width: 960px) {
  .contact-card--form { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .contact-card--form { padding: 40px 24px; }
  .form-control { padding: 14px 16px; font-size: 16px; /* 16px prevents iOS zoom on focus */ }
  textarea.form-control { min-height: 140px; }
  .form-submit { width: 100%; justify-content: center; }
}
.process-step-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dot);
  margin-bottom: 6px;
  display: inline-block;
  line-height: 1;
}
.process-step h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.process-step p {
  color: var(--charcoal-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
}
@media (max-width: 640px) {
  .process-step { grid-template-columns: 56px 1fr; gap: 24px; }
  .process-step::before { left: 27px; top: 56px; }
  .process-step-num { width: 56px; height: 56px; font-size: 15px; }
  .process-step h3 { font-size: 22px; }
}

/* ============================================
   USP — Windykacja na koszt dłużnika
   ============================================ */
.usp { padding: 0 12px 120px; }
.usp-card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--deep-teal);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 520px;
}
.usp-content {
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 48px;
}
.usp-top .overline.on-dark { margin-bottom: 32px; }
.usp h2 { color: #fff; max-width: 480px; margin-bottom: 24px; }
.usp-lead {
  color: rgba(255,255,255,0.72);
  font-size: 17px; line-height: 1.55;
  max-width: 460px;
}
.usp-bottom { display: flex; flex-direction: column; gap: 36px; }
.usp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.usp-stat-num {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 8px;
}
.usp-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.usp-image {
  background-image: url('temida.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.usp-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(14,47,46,0.5) 0%, rgba(14,47,46,0.05) 60%);
}

/* ============================================
   Publication
   ============================================ */
.publication { padding: 120px 0; }
.pub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.pub-main {
  padding: 56px 64px;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-xl);
  background: var(--warm-gray);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
}
.pub-main .overline { margin-bottom: 24px; }
.pub-main h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 480px;
}
.pub-main p {
  color: var(--charcoal-muted);
  margin-bottom: 36px;
  font-size: 15px; line-height: 1.6;
  max-width: 460px;
}
.pub-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 12px;
}
.pub-side {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1a1d1f;
  position: relative;
  min-height: 380px;
}
.pub-side-img {
  position: absolute; inset: 0;
  background-image: url('publikacje.jpg');
  background-size: cover;
  background-position: center;
}
.pub-side-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,28,0.1) 0%, rgba(20,24,28,0.7) 100%);
}
.pub-side-content {
  position: absolute; inset: 0;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: end;
  color: #fff;
  z-index: 2;
}
.pub-side-content h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 360px;
}
.pub-side-content .pub-meta { color: rgba(255,255,255,0.6); margin-bottom: 14px; }

/* ============================================
   Team — z inicjałami (gradient placeholder)
   ============================================ */
.team { padding: 120px 0; }
.team-head { margin-bottom: 64px; }
.team-head .overline { margin-bottom: 20px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-subtle);
}
.team-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--muted-petrol) 100%);
  position: relative;
  overflow: hidden;
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 50%);
}
.team-photo::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.22);
  font-size: clamp(80px, 9vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.team-photo--has-image {
  background: #1a1d1f;
}
.team-photo--has-image::before,
.team-photo--has-image::after { display: none; }
.team-photo--has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(0.1) contrast(1.02);
}
.team-photo--kgajda img { object-position: center 10%; }
.team-info { padding: 32px; }
.team-info h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.team-role {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 20px;
}
.team-info p {
  font-size: 14px;
  color: var(--charcoal-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 480px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag {
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-full);
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   Contact CTA
   ============================================ */
.contact-cta { padding: 0 12px 120px; }
.contact-card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-card .overline.on-dark { margin-bottom: 28px; }
.contact-card h2 { color: #fff; margin-bottom: 20px; max-width: 480px; }
.contact-card .lead { color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 460px; }
.contact-meta { display: grid; gap: 16px; }
.contact-row {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease;
}
.contact-row:hover { border-color: rgba(255,255,255,0.4); }
.contact-row-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-row-value { font-size: 15px; font-weight: 500; color: #fff; }

/* ============================================
   Footer — większa karta z domknięciem
   ============================================ */
.site-footer {
  padding: 0 12px 12px;
}
.footer-card {
  width: 100%;
  background: var(--deep-teal);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  padding: 72px clamp(40px, 5vw, 80px) 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: 14px; }
.footer-col a, .footer-col li {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  transition: color 180ms ease;
  font-weight: 300;
}
.footer-col a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
  max-width: 340px;
  line-height: 1.65;
  font-weight: 300;
}

.footer-bottom {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-copy { justify-self: start; font-weight: 300; }
.footer-policies { justify-self: center; display: flex; gap: 20px; }
.footer-policies a { color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-policies a:hover { color: #fff; }

/* Inveno credit */
.footer-credit {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 200ms ease;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.footer-credit:hover { color: rgba(255,255,255,0.95); }
.footer-credit .credit-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.25);
  transition: background 200ms ease;
}
.footer-credit:hover .credit-divider {
  background: rgba(255,255,255,0.6);
}
.footer-credit svg {
  width: 78px;
  height: auto;
  display: block;
  transition: opacity 200ms ease;
  opacity: 0.7;
}
.footer-credit:hover svg { opacity: 1; }
.footer-credit svg .st0 { fill: rgba(255,255,255,0.95); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .header-phone, .header-divider { display: none; }
}

/* ============================================
   Mobile menu — hamburger + drawer
   ============================================ */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-medium);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4.5px;
  transition: border-color 200ms ease;
}
.mobile-menu-toggle:hover { border-color: var(--charcoal); }
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease;
  transform-origin: center;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 49;
  padding: 110px 28px 32px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu nav { flex: 1; }
.mobile-menu nav ul { display: flex; flex-direction: column; }
.mobile-menu nav li { border-bottom: 1px solid var(--line-subtle); }
.mobile-menu nav a {
  display: block;
  padding: 22px 0;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  transition: color 200ms ease;
}
.mobile-menu nav a.is-active { color: var(--deep-teal); }
.mobile-menu nav a:hover { color: var(--deep-teal); }
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 36px;
}
.mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 14px 0;
}
.mobile-menu-phone svg { width: 18px; height: 18px; color: var(--charcoal-muted); }
.mobile-menu-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 22px;
  font-size: 15px;
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-pill { padding: 10px 10px 10px 18px; }
  .mobile-menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .brand-text { max-width: 200px; }

  .hero-frame { height: clamp(560px, 88vh, 720px); }
  .hero-bottom { flex-direction: column; align-items: start; }
  .hero-meta { text-align: left; }
  .hero-meta-desc { margin-left: 0; }
  .hero-ornament { width: clamp(280px, 60%, 460px); right: -10%; opacity: 0.5; }

  .specs-head { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-deco { width: 200px; height: 200px; }

  .usp-card,
  .pub-grid,
  .contact-card,
  .team-grid { grid-template-columns: 1fr; }
  .usp-image { min-height: 280px; }
  .usp-stats { grid-template-columns: 1fr 1fr; gap: 20px; }

  .pub-side { min-height: 320px; }
  .clients-inner { grid-template-columns: 1fr; gap: 24px; }
  .clients-list { justify-content: start; gap: 24px; row-gap: 28px; }

  .process { padding-top: 12px; }

  /* Footer — single column with brand on top, columns stacked. */
  .footer-card { padding: 56px 28px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 36px; }
  .footer-bottom {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
    text-align: left;
  }
  .footer-copy, .footer-policies, .footer-credit { justify-self: start; }
  .footer-policies { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 720px) {
  .specs-grid { grid-template-columns: 1fr; }
  .usp-content { padding: 36px 24px; }
  .pub-main { padding: 40px 28px; }
  .pub-side-content { padding: 32px 24px; }
  .contact-card { padding: 40px 24px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .hero-overlay { padding: 24px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 24px; }
  .process-step::before { left: 27px; }
  .process-step-num { width: 56px; height: 56px; font-size: 15px; }
  .process-step h3 { font-size: 22px; }
  .copy-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 22px;
  }
  .copy-row .iban {
    justify-content: center;
    font-size: 17px;
    gap: 6px 12px;
  }
  .copy-btn {
    width: 100%;
    height: auto;
    padding: 13px 18px;
    border-radius: 10px;
    gap: 10px;
    color: var(--charcoal);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .copy-btn::after { content: "Skopiuj numer"; }
  .copy-btn.is-copied::after { content: "Skopiowano"; }
  .hours-row { padding: 18px 0; flex-direction: column; align-items: flex-start; gap: 8px; }
  .hours-time { font-size: 22px; }
}

/* ============================================
   Kontakt bezposredni, klikalne wiersze
   ============================================ */
a.contact-row {
  text-decoration: none;
  color: inherit;
}
a.contact-row:hover .contact-row-value { color: var(--accent-dot); }
a.contact-row .contact-row-value { transition: color 200ms ease; }
a.contact-row:focus-visible {
  outline: 2px solid var(--accent-dot);
  outline-offset: 3px;
}
