h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Humane', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(70px, 10vw, 108px);
  margin: 0;
  line-height: 0.92;
}
h2 {
  font-size: clamp(54px, 10vw, 72px);
  line-height: 1;
  margin: 0 0 32px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: #e5e5e5;
  background: #0f0f0f;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  border: 0;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 26, 22, 0.7);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(229, 229, 229, 0.06);
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 64px;
}
.site-header .brand img {
  height: 42px;
  display: block;
}
.site-header .primary-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .primary-nav a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.site-header .primary-nav a:hover {
  color: #e2b052;
}
.site-header .primary-nav {
  margin-left: auto;
}
.site-header .btn {
  margin-left: 8px;
}
.site-header .nav-toggle {
  display: none;
}
.site-header .nav-toggle-btn {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  position: relative;
  user-select: none;
}
.site-header .nav-toggle-btn .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #e5e5e5;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  position: absolute;
  left: 8px;
}
.site-header .nav-toggle-btn .bar:nth-child(1) {
  top: 12px;
}
.site-header .nav-toggle-btn .bar:nth-child(2) {
  top: 19px;
}
.site-header .nav-toggle-btn .bar:nth-child(3) {
  top: 26px;
}
@media (max-width: 860px) {
  .site-header .brand img {
    height: 28px;
  }
  .site-header .nav {
    gap: 12px;
    min-height: 60px;
  }
  .site-header .primary-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid rgba(229, 229, 229, 0.08);
    padding: 12px 16px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-left: 0;
  }
  .site-header .primary-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .site-header .primary-nav a {
    display: block;
    padding: 10px 2px;
    font-size: 18px;
  }
  .site-header .nav-toggle-btn {
    display: inline-flex;
    order: 2;
  }
  .site-header #nav-toggle:checked ~ .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    top: 60px;
  }
  .site-header #nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .site-header #nav-toggle:checked ~ .nav-toggle-btn .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header #nav-toggle:checked ~ .nav-toggle-btn .bar:nth-child(2) {
    opacity: 0;
  }
  .site-header #nav-toggle:checked ~ .nav-toggle-btn .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 500;
  text-decoration: none;
  color: #0f0f0f;
}
.btn.btn-accent {
  font-weight: 600;
  margin-top: 26px;
  background: #e2b052;
  background-image: linear-gradient(135deg, #e2b052, #d1932f);
  color: #0f0f0f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn.btn-nav {
  font-weight: 500;
  font-size: 16px;
  background: #fff;
  color: #0f0f0f;
  padding: 8px 10px;
}
.btn.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
}
.hero .hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(15, 15, 15, 0.3), #0f0f0f), url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero .hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  padding-top: 96px;
  padding-bottom: 96px;
  margin-left: auto;
  margin-right: auto;
}
.hero .lead {
  color: #a3a3a3;
  margin: 0 0 24px;
  font-size: 20px;
}
@media (max-width: 720px) {
  .hero .lead {
    font-size: 16px;
  }
}
.section {
  padding: 80px 0;
  background: #0f0f0f;
}
.section.dark {
  background: #121212;
}
#pricing .section-title {
  text-align: center;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
}
@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.price-item {
  border-bottom: 2px dashed rgba(226, 176, 82, 0.22);
  padding-bottom: 20px;
}
.price-item header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price-item h3 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}
.price-item .price {
  color: #e5e5e5;
  font-weight: 800;
}
.price-item p {
  margin: 8px 0 0;
  color: #a3a3a3;
  font-size: 14px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.card.person {
  background: #161616;
  border: 1px solid rgba(229, 229, 229, 0.06);
  overflow: hidden;
}
.card.person img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.card.person .card-body {
  padding: 16px;
  margin-top: -24px;
}
.card.person .card-body h3 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e2b052;
  font-size: clamp(32px, 3.2vw, 32px);
  margin: -10px 0 0 0;
}
.card.person p {
  margin: 0;
  color: #a3a3a3;
  font-size: 14px;
}
.nadpis-center {
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.site-footer {
  border-top: 1px solid rgba(229, 229, 229, 0.08);
  background: #121212;
  padding: 24px 0;
  color: #a3a3a3;
  font-size: 14px;
}
