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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: #e6e6e6;
  color: #0d0d0d;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.site-header {
  position: relative;
  width: 100%;
  height: 92px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.header-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  width: 134px;
  height: 44px;
  flex-shrink: 0;
  aspect-ratio: 134/44;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-link {
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  color: #0d0d0d;
  padding: 10px 12px;
}

.lang-toggle {
  --toggle-step: 32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid #0d0d0d;
  background: transparent;
  cursor: pointer;
  font-family: "Fira Sans Condensed", "Poppins", sans-serif;
}

.lang-indicator {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0d0d0d;
  transition: transform 0.2s ease;
}

.lang-toggle.is-en .lang-indicator {
  transform: translateX(var(--toggle-step));
}

.lang-option {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.4;
  color: #a6a6a6;
  position: relative;
  z-index: 1;
}

.lang-option--active {
  color: #ffffff;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #0d0d0d;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.construction {
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
}

.construction-visual {
  display: flex;
  justify-content: end;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 12 / 9;
  overflow: hidden;
}

.construction-video {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 13% 50%;
  display: block;
}

.construction-content {
  /* flex: 0 1 360px; */
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.construction-title {
  font-size: 36px;
  padding: 0 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #0d0d0d;
  text-align: center;
  min-height: 2.8em;
  width: 100%;
  margin: 0 auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.social-link img {
  width: 24px;
  height: 24px;
}

.update-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}

.address-item {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.contact-link {
  color: #29292b;
  text-decoration: underline;
  font-size: 13px;
  line-height: 1.3;
  display: flex;
  gap: 10px
}

.portfolio-button {
  display: flex;
  height: 30px;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* align-self: stretch; */
}

@media (max-width: 1024px) {
  .header-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .logo {
    width: 120px;
    height: 40px;
  }

  .header-nav {
    gap: 16px;
  }

  .nav-link,
  .primary-button {
    font-size: 15px;
  }

  .construction {
    gap: 24px;
    padding: 40px 0 80px;
  }

  .construction-title {
    font-size: 32px;
  }
}

@media (max-width: 800px) {
  .header-content {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    width: 108px;
    height: 36px;
  }

  .construction {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "video"
      "panel";
    text-align: center;
    justify-items: center;
    gap: 24px;
    padding: 40px 0 80px;

  }

  .construction-content {
    display: contents;
  }

  .construction-title {
    grid-area: title;
  }

  .construction-visual {
    grid-area: video;
    justify-content: center;
  }

  .construction-video {
    margin-left: 3rem;
  }

  .update-panel {
    grid-area: panel;
  }

  .portfolio-button {
    align-self: center;
  }
}

@media (max-width: 520px) {
  .logo {
    width: 96px;
    height: 32px;
  }

  .lang-toggle {
    --toggle-step: 28px;
    height: 36px;
    padding: 4px 3px;
  }

  .lang-indicator {
    width: 24px;
    height: 24px;
    left: 3px;
    top: 5px;
  }

  .lang-option {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .construction {
    gap: 5px;
    padding: 30px 0 64px;
  }

  .construction-title {
    font-size: 28px;
  }

  .construction-video {
    margin-left: 3rem;
  }
}