@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "HelveticaNeueCyr";
  src: local("HelveticaNeueCyr-Roman"), url("/styles/fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"), url("/styles/fonts/HelveticaNeueCyr-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: local("HelveticaNeueCyr-Light"), url("/styles/fonts/HelveticaNeueCyr-Light.woff2") format("woff2"), url("/styles/fonts/HelveticaNeueCyr-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: local("HelveticaNeueCyr-Medium"), url("/styles/fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("/styles/fonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "HelveticaNeueCyr", "Helvetica Neue", Arial, sans-serif;
  background: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2% 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav-logo a {
  text-decoration: none;
}
.nav .nav-logo h1 {
  font-size: 1.125rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav .nav-menu.active {
  background: #000000;
}
.nav .nav-menu .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
.nav .nav-menu .nav-link:hover {
  opacity: 0.6;
}
.nav .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}
.nav .nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav .nav-burger span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.landing-page {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.landing-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landing-image-container .landing-image,
.landing-image-container .landing-svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.landing-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}
.landing-placeholder p {
  font-size: 0.875rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0.5rem 0;
}
.landing-placeholder .landing-placeholder-note {
  font-size: 0.75rem;
  color: #ffffff;
}

.landing-content {
  position: relative;
  color: #ffffff;
  z-index: 0;
  text-align: center;
}
.landing-content .landing-title {
  font-size: 4.5rem;
  font-weight: 100;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.5s;
}
.landing-content .landing-subtitle {
  font-size: 1.25rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-container::-webkit-scrollbar {
  width: 8px;
}
.page-container::-webkit-scrollbar-track {
  background: #0a0a0a;
}
.page-container::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 4px;
}
.page-container::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

.page-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 10% 5% 5%;
}

.section-title {
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 1.375rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
  color: #ffffff
}

.content-grid {
  margin-bottom: 4rem;
}

.about-intro {
  max-width: 70%;
  margin-top: 0;
}
.about-intro p {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 100;
}

.section {
  margin-bottom: 6rem;
  color: #ffffff;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.section.lazy-section {
  opacity: 0;
  transform: translateY(50px);
}
.section.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-size: 1.0625rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.history-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.history-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.history-item .year {
  font-size: 1rem;
  color: #cccccc;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.history-item p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.history-item ul {
  list-style: none;
  padding-left: 0;
}
.history-item ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  font-weight: 100;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.history-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999999;
}

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

.skill-category h4 {
  font-size: 0.9375rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.skill-category ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 3rem !important;
}
.skill-category ul li {
  margin-right: 0.25rem !important;
  padding: 0.5rem 1.25rem;
  background: transparent;
  vertical-align: middle;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #ffffff !important;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "HelveticaNeueCyr", "Helvetica Neue", Arial, sans-serif;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.award-item {
  padding: 2rem 1.5rem;
  background: #000000;
  border: none;
  transition: background 0.3s ease;
}
.award-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.award-item .award-year {
  display: block;
  font-size: 0.6875rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.award-item .award-name {
  font-size: 0.875rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.award-item .award-project {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 100;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.project-item {
  padding: 2rem 1.5rem;
  background: #000000;
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
}
.project-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.project-item h4 {
  font-size: 0.875rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  color: transparent;
}
.project-item .project-client {
  font-size: 0.6875rem;
  color: #ffffff;
  font-weight: 100;
}

.writing-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.writing-item {
  display: block;
  padding: 1.5rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}
.writing-item:hover {
  color: #ffffff;
}
.writing-item .writing-title {
  font-size: 0.8125rem;
  line-height: 1.8;
  font-weight: 100;
  color: #ffffff;
}

.contact-content {
  padding: 2rem 0;
}

.contact-email {
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 100;
  transition: opacity 0.3s ease;
}
.contact-email:hover {
  opacity: 0.6;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-link:hover {
  padding-left: 1rem;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.contact-link .contact-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999999;
  font-weight: 100;
}
.contact-link .contact-value {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 100;
  letter-spacing: 0.02em;
}

.footer {
  margin-top: 6rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer p {
  font-size: 0.75rem;
  color: #cccccc;
  font-weight: 100;
}
.footer p a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p a:hover {
  color: #ffffff;
}

.blog-filters {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "HelveticaNeueCyr", "Helvetica Neue", Arial, sans-serif;
}
.filter-btn:hover {
  border-color: #999999;
  color: #ffffff;
}
.filter-btn.active {
  background: rgba(255, 255, 255, 0.02);
  border-color: #cccccc;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.blog-post {
  padding: 2.5rem 2rem;
  background: #000000;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.blog-post.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s ease;
}
.blog-post:hover {
  background: rgba(255, 255, 255, 0.02);
}

.blog-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.blog-category {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 100;
}

.blog-date {
  font-size: 0.6875rem;
  color: #ffffff;
  font-weight: 100;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #ffffff;
}

.blog-excerpt {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 100;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 100;
  transition: color 0.3s ease;
}
.blog-read-more:hover {
  color: #ffffff;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
}
.no-results p {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 100;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-content .landing-title {
    font-size: 3rem;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 1.5rem 2rem;
  }
  .nav .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .nav .nav-menu.active {
    right: 0;
  }
  .nav .nav-menu .nav-link {
    font-size: 1.5rem;
    color: #ffffff;
  }
  .nav .nav-burger {
    display: flex;
    z-index: 1001;
  }
  .nav .nav-burger.active {
    z-index: 2000;
  }
  .nav .nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav .nav-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav .nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .page-content {
    padding: 6rem 2rem 3rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .history-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .history-item .year {
    min-width: auto;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .landing-content .landing-title {
    font-size: 2rem;
  }
  .landing-content .landing-subtitle {
    font-size: 0.875rem;
  }
  .contact-email {
    font-size: 1.25rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}
@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav .nav-logo h1 {
    font-size: 0.875rem;
  }
  .page-content {
    padding: 5rem 1.5rem 2rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    font-size: 0.875rem;
  }
  .about-intro p {
    font-size: 1rem;
  }
  .section {
    margin-bottom: 4rem;
  }
  .section-heading {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=styles.css.map */