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

/* ============================================================
   Elevator-Tech Marcin Niemiec — finished design
   Steel Blue + Logo Blue accent (client palette baked in)
   ============================================================ */

:root {
  /* Brand — Logo Blue palette (client-chosen) */
  --ink:        #14202E;
  --ink-2:      #1E3A52;          /* steel */
  --ink-3:      #41617D;          /* mid-steel */
  --muted:      #6B7689;
  --muted-2:    #9AA3B2;
  --line:       rgba(15, 27, 45, 0.12);
  --line-2:     rgba(15, 27, 45, 0.22);

  --paper:      #FFFFFF;
  --paper-2:    #F7F8FA;          /* near-white card bg */
  --paper-3:    #EEF1F6;          /* warm-cool tint */

  --accent:     #2394D2;          /* Logo Blue */
  --accent-ink: #FFFFFF;
  --accent-soft:#D6ECF8;

  --steel-soft: #E6EDF5;

  /* Type */
  --font-sans:  'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radii / shadows */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(15,27,45,0.06), 0 1px 0 rgba(15,27,45,0.04);
  --shadow-md: 0 4px 14px rgba(15,27,45,0.08), 0 1px 0 rgba(15,27,45,0.04);
  --shadow-lg: 0 12px 32px rgba(15,27,45,0.12);
  --shadow-accent: 6px 6px 0 var(--accent);

  /* Layout */
  --container: 1260px;
  --pad-x: 56px;
}

@media (max-width: 880px) { :root { --pad-x: 24px; } }
@media (max-width: 980px) { :root { --pad-x: 32px; } }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.on-dark { color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-sans); margin: 0; color: var(--ink); }

.h-display {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  font-weight: 600;
}
.h-1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 600;
}
.h-2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  font-weight: 600;
}
.h-3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  font-weight: 600;
}

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 62ch;
}
.body {
  color: var(--ink-3);
  line-height: 1.65;
}
.body--lg { font-size: 17px; }

.hl-mark {
  background: linear-gradient(180deg, transparent 62%, var(--accent) 62%, var(--accent) 92%, transparent 92%);
  padding: 0 2px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
}
.section--tight { padding: clamp(40px, 5vw, 60px) 0; }
.section--dark  { background: var(--ink); color: var(--paper); }
.section--dark .h-display,
.section--dark .h-1,
.section--dark .h-2,
.section--dark .h-3 { color: var(--paper); }
.section--dark .lead { color: rgba(255,255,255,0.75); }
.section--dark .body { color: rgba(255,255,255,0.72); }
.section--dark .eyebrow { color: var(--accent); }
.section--soft  { background: var(--paper-2); }

.section-divider {
  height: 1px;
  background: var(--line);
}

/* ============================================================
   TOP BAR (above nav) — hides on scroll
   ============================================================ */

.top-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  max-height: 44px;
  transition: max-height .3s ease, padding .3s ease;
}
.nav-wrap.shrunk .top-bar {
  max-height: 0;
  border-bottom-color: transparent;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.1px;
  text-decoration: none;
  transition: color .15s;
}
.top-bar-item:hover { color: var(--accent); }
.top-bar-item .tb-ico {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.top-bar-item .tb-ico svg { width: 11px; height: 11px; }
.top-bar-item .tb-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
}
.top-bar-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-right: auto;
}
.top-bar-hours .dot {
  width: 7px; height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25);
}

@media (max-width: 720px) {
  .top-bar-inner { justify-content: center; gap: 16px; padding: 8px 0; }
  .top-bar-hours { display: none; }
  .top-bar-item .tb-lbl { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav-wrap.shrunk {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(15,27,45,0.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  transition: padding .25s ease;
}
.nav-wrap.shrunk .nav { padding: 12px 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap .25s ease;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: height .25s ease;
}
.nav-wrap.shrunk .brand-logo { height: 34px; }
.brand--footer .brand-logo { height: 48px; }

.brand-mark {
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  transition: width .25s ease, height .25s ease;
}
.nav-wrap.shrunk .brand-mark { width: 32px; height: 32px; }
.brand-mark svg { width: 22px; height: 22px; }
.nav-wrap.shrunk .brand-mark svg { width: 18px; height: 18px; }

.brand-text { line-height: 1; }
.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  transition: font-size .25s ease;
  white-space: nowrap;
}
.nav-wrap.shrunk .brand-name { font-size: 14px; }
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  transition: opacity .2s ease, max-height .25s ease, margin-top .25s ease;
  overflow: hidden;
}
.nav-wrap.shrunk .brand-sub { opacity: 0; max-height: 0; margin-top: 0; }

.nav-links {
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-3); }
.nav-links a.active {
  color: var(--ink);
  background: var(--steel-soft);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 8px;
}
.nav-phone .ico {
  width: 16px; height: 16px; color: var(--accent-ink); background: var(--accent);
  border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
}
.nav-phone .ico svg { width: 9px; height: 9px; }

@media (max-width: 1100px) {
  .nav-links a { padding: 8px 11px; font-size: 13.5px; }
  .nav { gap: 20px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .15s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: var(--accent-ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn--on-dark { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn--on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--lg { padding: 16px 28px; font-size: 15px; }

/* ============================================================
   PLACEHOLDERS
   ============================================================ */

.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--steel-soft) 0%, var(--paper-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}
.ph::after {
  content: '';
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: 1.5px dashed var(--ink-3);
  border-radius: 50%;
  opacity: 0.35;
}
.ph .ph-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
}
.ph.ph--ink {
  background:
    linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  border-color: rgba(255,255,255,0.1);
}
.ph.ph--ink::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  opacity: 1;
}
.ph.ph--ink::after {
  border-color: rgba(255,255,255,0.4);
}
.ph.ph--ink .ph-label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(48px, 5vw, 72px) 0 clamp(64px, 7vw, 110px);
}
.hero-grid--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.hero-title { margin-bottom: 20px; }
.hero-lead  { margin-bottom: 32px; }
.hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust .num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
}
.hero-trust .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  min-width: 0;
}
.hero-visual .ph { position: absolute; inset: 0; height: 100%; }

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-md);
  padding: 16px 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-badge .b-ico {
  width: 42px; height: 42px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge .b-ico svg { width: 22px; height: 22px; }
.hero-badge .b-text { line-height: 1.3; }
.hero-badge .b-title { font-size: 14px; font-weight: 600; }
.hero-badge .b-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* hero typo variant */
.hero-grid--typo { text-align: left; max-width: 1100px; }
.hero-grid--typo .hero-title { font-size: clamp(52px, 7vw, 96px); }
.hero-grid--typo .hero-ctas { margin-bottom: 56px; }
.hero-grid--typo .hero-belt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-grid--typo .hero-belt > div {
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line);
}
.hero-grid--typo .hero-belt > div:nth-child(4n) { border-right: none; }

/* hero overlay variant */
.hero-grid--overlay { position: relative; min-height: 620px; }
.hero-grid--overlay .ph { position: absolute; inset: 0; height: 100%; }
.hero-grid--overlay .overlay-box {
  position: relative;
  z-index: 2;
  max-width: 720px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--r-md);
  margin-top: 80px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 880px) {
  .hero-grid--split { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .hero-badge { position: relative; left: 0; bottom: 0; margin-top: 16px; }
  .hero-grid--typo .hero-belt { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   LOGO STRIP (producers)
   ============================================================ */

.strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.strip-item {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--ink-3);
  font-family: var(--font-sans);
  opacity: 0.7;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.strip-item:hover { opacity: 1; color: var(--ink); }

/* ============================================================
   SECTION HEADS
   ============================================================ */

.s-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.s-head.center { display: block; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.s-head.single { display: block; }

@media (max-width: 880px) {
  .s-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 16px;
}
.about-visual .ph { min-height: 380px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.about-stats .cell {
  padding: 22px 22px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats .cell:nth-child(2n) { border-right: none; }
.about-stats .cell:nth-last-child(-n+2) { border-bottom: none; }
.about-stats .cell .num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1;
}
.about-stats .cell .num em { font-style: normal; color: var(--accent-ink); background: var(--accent); padding: 0 4px; }
.about-stats .cell .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.about-body p { margin: 0 0 18px; }
.about-sub { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }

.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.type-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, transform .15s;
}
.type-chip:hover { border-color: var(--ink-2); transform: translateY(-1px); }
.type-chip .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }
  .types-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card .s-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.service-card .s-ico {
  width: 56px; height: 56px;
  background: var(--steel-soft);
  color: var(--ink-2);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.service-card:hover .s-ico { background: var(--accent); color: var(--accent-ink); }
.service-card .s-ico svg { width: 28px; height: 28px; }
.service-card .s-title { font-size: 19px; font-weight: 600; letter-spacing: -0.3px; }
.service-card .s-desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; flex: 1; }
.service-card .s-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.process::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  border-top: 1.5px dashed var(--line-2);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}
.step .s-circle {
  width: 60px; height: 60px;
  background: var(--paper);
  border: 1.5px solid var(--ink-2);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 18px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.step:hover .s-circle {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: scale(1.08);
}
.step .s-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.step .s-desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .process::before { display: none; }
}
@media (max-width: 500px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY US
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.why-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  background-image: linear-gradient(135deg, var(--accent), #FFC838);
  position: relative;
  margin-top: 1px;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.5l2 2 5-5' stroke='%230F1B2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

.why-image { position: relative; }
.why-image .ph { min-height: 460px; }
.why-image .ph-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink);
  z-index: 2;
}

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
}

/* ============================================================
   AREA
   ============================================================ */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s, border-color .15s;
}
.area-tag:hover { background: var(--accent-soft); border-color: var(--accent); }
.area-tag .pin {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-image .ph { min-height: 460px; }

@media (max-width: 880px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease;
}
.portfolio-card:hover { transform: translateY(-3px); }
.portfolio-card .ph { min-height: 280px; }
.portfolio-card .pf-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  border-radius: var(--r-sm);
  z-index: 2;
}
.portfolio-card .pf-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}
.portfolio-card .pf-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

@media (max-width: 880px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .h-1 { color: var(--paper); margin-bottom: 18px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-banner .lead { color: rgba(255,255,255,0.78); margin: 0 auto 36px; }
.cta-banner .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-banner .tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}
.contact-info {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
}
.contact-info .h-2 { color: var(--paper); margin-bottom: 16px; }
.contact-info .lead { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.contact-info .info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info .info-row:last-of-type { border-bottom: none; }
.contact-info .info-row .ico {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.contact-info .info-row .ico svg { width: 18px; height: 18px; }
.contact-info .info-row .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.contact-info .info-row .val { font-size: 16px; color: var(--paper); font-weight: 500; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--r-md);
}
.contact-form .h-3 { margin-bottom: 6px; }
.contact-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink-2);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 110px; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 14px 0 20px;
  line-height: 1.5;
}
.consent input { margin-top: 2px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .fields-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 28px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 56px;
}
.footer-brand .brand-name { color: var(--paper); font-size: 18px; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-brand .brand-mark { background: var(--accent); color: var(--ink); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 36ch;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  transition: color .15s;
}
.footer ul a:hover { color: var(--accent); }

.footer-hours { font-size: 14px; color: rgba(255,255,255,0.78); display: grid; gap: 8px; }
.footer-hours .row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed rgba(255,255,255,0.12); }
.footer-hours .row:last-child { border-bottom: none; }
.footer-hours .row .d { color: rgba(255,255,255,0.55); }
.footer-hours .row strong { color: var(--paper); font-weight: 500; font-family: var(--font-mono); font-size: 13px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING CALL CTA
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 95;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  box-shadow: 0 8px 24px rgba(245, 177, 0, 0.4), 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 177, 0, 0.5), 0 3px 8px rgba(0,0,0,0.12);
}
.floating-cta .phone-circle {
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
}
.floating-cta .phone-circle svg { width: 13px; height: 13px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* ============================================================
   FONT SWAP CLASSES (tweak)
   ============================================================ */

body.font-grotesk { --font-sans: 'Space Grotesk', system-ui, sans-serif; }
body.font-archivo { --font-sans: 'Archivo', system-ui, sans-serif; }
body.font-plex    { --font-sans: 'IBM Plex Sans', system-ui, sans-serif; }
body.font-plex    { --font-mono: 'IBM Plex Mono', ui-monospace, monospace; }

/* tweaks panel mini hint */
.tw-mini {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* === THEME ADDITIONS (WordPress port) === */
.ph-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
/* obrazy realizacji / hero wypełniają kafel */
.portfolio-card .ph-img,
.hero-visual .ph-img,
.about-visual .ph-img,
.why-image .ph-img,
.area-image .ph-img { height: 100%; }

/* === QUICK RESPONSE (dark band) === */
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.quick-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.quick-cards { display: grid; gap: 18px; }
.quick-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
}
.quick-card .qc-ico {
  width: 54px; height: 54px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  border-radius: var(--r-sm);
}
.quick-card .qc-title { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; color: var(--paper); }
.quick-card .qc-sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }
@media (max-width: 880px) {
  .quick-grid { grid-template-columns: 1fr; }
}

/* === WPForms — dopasowanie do designu formularza kontaktowego === */
.contact-form .wpforms-container { margin: 0; }
.contact-form .wpforms-form .wpforms-field { padding: 0; margin-bottom: 16px; }
.contact-form .wpforms-form .wpforms-field-label,
.contact-form .wpforms-form .wpforms-field-label-inline {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
  line-height: 1.4;
}
.contact-form .wpforms-form input[type=text],
.contact-form .wpforms-form input[type=email],
.contact-form .wpforms-form input[type=tel],
.contact-form .wpforms-form input[type=url],
.contact-form .wpforms-form input[type=number],
.contact-form .wpforms-form select,
.contact-form .wpforms-form textarea {
  width: 100%;
  max-width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--r-sm);
  box-shadow: none;
  transition: border-color .15s, background .15s;
}
.contact-form .wpforms-form input:focus,
.contact-form .wpforms-form select:focus,
.contact-form .wpforms-form textarea:focus {
  outline: none;
  border-color: var(--ink-2);
  background: var(--paper);
}
.contact-form .wpforms-form textarea { resize: vertical; min-height: 110px; }
.contact-form .wpforms-form .wpforms-field-description {
  font-size: 12.5px; color: var(--muted); margin-top: 6px;
}
.contact-form .wpforms-form .wpforms-required-label { color: var(--accent); }

/* dwie kolumny: email + telefon w jednym rzędzie (klasa CSS Layout WPForms) */
.contact-form .wpforms-form .wpforms-field-row { display: block; }

/* RODO / zgody */
.contact-form .wpforms-form .wpforms-field-checkbox label,
.contact-form .wpforms-form .wpforms-field-gdpr-checkbox label {
  font-size: 12.5px; color: var(--muted); line-height: 1.5; font-family: var(--font-sans);
  letter-spacing: normal; text-transform: none;
}
.contact-form .wpforms-form ul.wpforms-field-required-items,
.contact-form .wpforms-form .wpforms-field-gdpr-checkbox ul { list-style: none; margin: 0; padding: 0; }

/* przycisk wyślij = btn--primary, pełna szerokość */
.contact-form .wpforms-form .wpforms-submit-container { margin-top: 4px; }
.contact-form .wpforms-form button.wpforms-submit {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.contact-form .wpforms-form button.wpforms-submit:hover {
  background: #1f84bd;
  box-shadow: var(--shadow-md);
}
.contact-form .wpforms-confirmation-container-full {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--ink);
  padding: 18px 20px;
  border-radius: var(--r-sm);
}

/* fix: natywny <select> WPForms (modern CSS) ma padding-block:0 + line-height:unset,
   co przycinało descender litery „y" w „Wybierz...". Dajemy realny padding pionowy i line-height. */
.contact-form .wpforms-container .wpforms-form .wpforms-field select {
  padding-block: 12px;
  padding-inline: 14px 28px;
  line-height: 1.4;
  height: auto;
  min-height: 48px;
}
