.site-srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #0f172a;
  color: #f5efe5;
  border-bottom: 1px solid rgba(245, 239, 229, 0.1);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 3fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #f5efe5;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  font-stretch: condensed;
}
.site-brand svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav__link {
  text-decoration: none;
  color: #f5efe5;
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
  font-stretch: condensed;
}
.site-nav__link:hover {
  opacity: 1;
}
.site-nav__link.activ_link {
  opacity: 1;
  color: #22d3ee;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: #f5efe5;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  font-stretch: condensed;
}
.site-header__cta:hover {
  background-color: #ffffff;
}
.site-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.25rem;
  background: transparent;
  border: none;
  color: #f5efe5;
  cursor: pointer;
  padding: 0;
}
.site-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer {
  background-color: #050a15;
  color: #f5efe5;
  padding: 5rem 1.5rem 2rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 4rem;
}
.site-footer__brand-col {
  max-width: 400px;
}
.site-footer__brand {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-stretch: condensed;
}
.site-footer__manifesto {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
.site-footer__col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  font-stretch: condensed;
}
.site-footer__contact-col {
  display: flex;
  flex-direction: column;
}
.site-footer__contact-link {
  color: #f5efe5;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.site-footer__contact-link:hover {
  opacity: 1;
}
.site-footer__links-col {
  display: flex;
  flex-direction: column;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__link {
  color: #f5efe5;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-stretch: condensed;
}
.site-footer__link:hover {
  opacity: 1;
}
.site-footer__bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

.site-mobileNav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
}
.site-mobileNav[hidden] {
  display: none;
}
.site-mobileNav__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 10, 21, 0.8);
  backdrop-filter: blur(4px);
}
.site-mobileNav__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: #0f172a;
  color: #f5efe5;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.site-mobileNav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.site-mobileNav__brand {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-stretch: condensed;
}
.site-mobileNav__close {
  background: transparent;
  border: none;
  color: #f5efe5;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem;
}
.site-mobileNav__links {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex-grow: 1;
}
.site-mobileNav__link {
  color: #f5efe5;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-stretch: condensed;
}
.site-mobileNav__link.activ_link {
  opacity: 1;
  color: #22d3ee;
}
.site-mobileNav__bottom {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-mobileNav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #f5efe5;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-align: center;
  font-stretch: condensed;
}
.site-mobileNav__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-mobileNav__contact a {
  color: #f5efe5;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-nav--desktop {
    display: none;
  }
  .site-header__cta {
    display: none;
  }
  .site-burger {
    display: flex;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
