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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0f0f0f;
  background: #faf7f1;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  width: 100%;
  height: 88px;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 32px;
  letter-spacing: 6px;
  line-height: 1;
}

.logo span {
  display: block;
  font-size: 11px;
  letter-spacing: 8px;
  text-align: center;
  margin-top: 6px;
}

.menu {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 clamp(140px, 4vw, 60px);
}
.menu a:hover {
  color: #E79058;
}

.btn-header {
  background: #E79058;
  padding: 16px 28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.btn-header:hover {
  background: #E79058;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}