:root {
  --color-accent: #92278f; 
  --color-text: #f8fafc;        
  --color-text-muted: #999999; 
  --font-display: "Sitka-text", Georgia, "Times New Roman", serif;
  --font-body: 'Inter', sans-serif;

  --Micro: clamp(8px, 0.4vw + 6px, 14px);
  --Body: clamp(14px, 0.3vw + 12px, 18px);
  --Subtitle: clamp(20px, 0.5vw + 18px, 28px);
  --Display: clamp(32px, 1vw + 28px, 48px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background-image: url('../images/mm-background.jpg');
  background-size: cover;       
  background-position: center;  
  background-attachment: fixed; 
  background-color: #1a1a2e;
}

.container {
  position: relative;
  z-index: 1; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px 1px;
  }

.logo-wrap {
  text-align: center;
}


.tagline {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  animation: fadeDown 0.8s ease both;
}

.logo {
  max-width: 120px;   
  max-height: 100px;  
  width: auto;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
  animation: fadeDown 0.8s ease both;
}

.content {
  text-align: center;
  max-width: 600px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.company-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.15em;
  margin: 6px 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.15;
  animation: fadeDown 0.8s ease both;
}

.divider {
  background-image: url('../images/divider.png');
  width: 300px;
  height: 5px;
  margin: 20px 0;
  animation: fadeUp 1s ease both;
  }

/*.divider-line {
  width: 10px;
  height: 1px;
  background: var(--color-text);
  margin: 10px auto;
  } */

.divider2 {
  background-image: url('../images/divider2.png');
  width: 30px;
  height: 3px;
  margin: 16px 0 10px;
  animation: fadeDown 1s ease both;
  }

.menu span:not(:last-child)::after {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  margin-left: 13px; 
  display: inline-block;
}

.menu {
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: var(--type-body); line-height: 1.6; 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.description {
  line-height: 1.5;
  color: var(--color-text-muted);
  font-weight: 300;
}

.description-big{
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 2px;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s 0.3s ease both;
}

.contact-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-accent);
  transition: color 0.25s, transform 0.25s;
  }

.contact-item:hover {
  color: var(--color-text);
  transform: translateX(4px);
}

.contact-text {
font-size: 0.9rem;
letter-spacing: 0.04em; 
font-weight: 600;
}

.slogan {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1vw, 1rem); 
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.4;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

/* animation */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* adaptive */
@media (max-width: 480px) {
  .container {
    gap: 28px;
    padding: 40px 24px;
  }

  .contacts {
    align-items: flex-start;
    width: 100%;
  }
}
