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

body {
  font-family: Arial, sans-serif;
  color: #1f1f1f;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  width: 100%;
  padding: 22px 0;
  background: #ffffff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #1f1f1f;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #1f1f1f;
  text-decoration: none;
  font-size: 15px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  background: #f3f1ec;
}

.hero-content {
  max-width: 750px;
}

.hero-label {
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-content > p:last-child {
  font-size: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 20px;
  }

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

  .hero h1 {
    font-size: 38px;
  }

  .hero {
    min-height: 60vh;
  }
}
