:root {
  --site-primary: #161616;
  --site-primary-dark: #030303;
  --site-accent: #6e69f3;
  --site-secondary: #555555;
  --site-primary-light: #484848;
  --site-surface: #f8f8f8;
  --site-text-secondary: #484848;
  --bs-body-bg: #ffffff;
  --bs-body-color: #020202;
  --bs-body-font-family: 'Sora', sans-serif;
  --bs-link-color: #161616;
  --bs-link-hover-color: #030303;
}
body { background: var(--bs-body-bg); color: var(--bs-body-color); font-family: var(--bs-body-font-family); }
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', serif; }
.btn-primary { background-color: var(--site-primary); border-color: var(--site-primary); }
.btn-primary:hover, .btn-primary:focus { background-color: var(--site-primary-dark); border-color: var(--site-primary-dark); }
.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }
a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

body {
  line-height: 1.65;
}

main section:nth-of-type(even),
.hero-shell,
.contact-panel,
.page-band {
  background-color: var(--site-surface);
}

.utility-bar {
  background: var(--site-primary);
  color: #ffffff;
  font-size: 0.92rem;
}

.utility-bar a {
  color: #ffffff;
  text-decoration: none;
}

.utility-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.navbar {
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.nav-link {
  font-weight: 500;
}

.hero-shell {
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.12);
}

.hero-copy .display-5 {
  line-height: 1.1;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid img,
.service-image,
.card img,
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-grid .grid-tall {
  min-height: 180px;
}

.image-grid .grid-wide {
  grid-column: span 2;
  min-height: 190px;
}

.section-rule {
  width: 60%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(85, 85, 85, 0.4);
}

.card {
  border-radius: 10px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.12);
  overflow: hidden;
}

.card-project {
  min-height: 100%;
}

.card-project .card-body,
.service-card .card-body {
  padding: 1.5rem;
}

.kicker {
  display: inline-block;
  color: var(--site-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
}

.btn,
.btn-primary,
button,
input[type="submit"] {
  border-radius: 0;
  border-width: 3px;
  border-style: solid;
  border-color: var(--site-primary);
  background: var(--site-surface);
  color: var(--site-primary);
  box-shadow: 3px 3px 0 var(--site-primary);
  font-weight: 700;
}

.btn:hover,
.btn:focus,
.btn-primary:hover,
.btn-primary:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  box-shadow: none;
  color: #ffffff;
}

.form-control,
.form-select {
  border-radius: 5px;
  border: 2px solid rgba(22, 22, 22, 0.2);
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 0.2rem rgba(110, 105, 243, 0.15);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.12);
  font-weight: 700;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.12);
}

footer.site-footer {
  min-height: 80px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  font-size: 0.95rem;
}

footer.site-footer a {
  text-decoration: none;
}

footer.site-footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1055;
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.12);
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.legal-content,
.content-main {
  max-width: 960px;
}

.list-check {
  padding-left: 1.25rem;
}

.list-check li {
  margin-bottom: 0.65rem;
}

@media (max-width: 991.98px) {
  .hero-shell {
    padding: 2rem;
  }

  .utility-bar .d-flex {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  footer.site-footer .row {
    text-align: center;
  }
}

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

  .image-grid .grid-wide {
    grid-column: span 1;
  }
}