:root {
  --bg: #09080a;
  --surface: #131116;
  --surface-2: #1c1a21;
  --accent: #c9a84c;
  --accent-dim: #8a6d2f;
  --text: #f0ede8;
  --text-muted: #8a8693;
  --text-dim: #55525d;
  --border: #23202b;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 8, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shine {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
}
.hero-shine-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}
.hero-shine-2 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  bottom: 0;
  left: -100px;
  opacity: 0.03;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #09080a;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: #e0bb5a;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Sections */
.section-header {
  margin-bottom: 64px;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}

/* Services */
.services {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--surface-2);
}
.service-card--featured {
  background: var(--surface-2);
  border: 1px solid var(--accent-dim);
}
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.service-price {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Realizacje */
.realizacje {
  padding: 80px 32px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.realizacje-header {
  text-align: center;
  margin-bottom: 64px;
}
.realizacje-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 16px auto 0;
  font-weight: 300;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.case-images {
  display: flex;
  height: 240px;
}
.case-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.case-img--before {
  background: #1a1a1a;
}
.case-img--after {
  background: #222222;
  background-image: radial-gradient(ellipse at center, #3a3a3a 0%, #1a1a1a 70%);
}
.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.case-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 1;
  position: relative;
}
.case-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: var(--text-dim);
  font-size: 16px;
  flex-shrink: 0;
}
.case-info {
  padding: 24px 28px;
}
.case-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.case-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* Proces / Timeline */
.proces {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.proces-header {
  margin-bottom: 80px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}
.step-line {
  flex: 1;
  width: 1px;
  background: var(--border);
  min-height: 48px;
}
.step-line--last {
  background: transparent;
}
.step-content {
  padding: 4px 0 48px 32px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 8px;
  line-height: 1.65;
}
.step-time {
  font-size: 12px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Liczby */
.liczby {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
  background: var(--surface);
}
.liczby-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.stat {
  text-align: center;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  max-width: 140px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Closing */
.closing {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.closing-headline em {
  font-style: normal;
  color: var(--accent);
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.65;
}
.btn-closing {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--accent);
  color: #09080a;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.btn-closing:hover {
  background: #e0bb5a;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-badge { display: none; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .proces { padding: 80px 24px; }
  .liczby-grid { flex-direction: column; gap: 40px; }
  .stat-divider { display: none; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 40px; }
  .hero-headline { font-size: 56px; }
}