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

body {
  height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
  overflow: hidden;
  background: #f6f2ec;
}

/* Background image */
.background {
  position: fixed;
  inset: 0;
  background: url("woman-cosmetology-studio-procedures.jpg") center/cover no-repeat;
  filter: blur(14px);
  transform: scale(1.1);
  z-index: -2;
}

/* Soft overlay for contrast */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: -1;
}

/* Main content */
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tagline {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 32px;
}

.coming-soon {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1f1f1f;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 6px;
}

/* Footer */
footer {
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 12px;
  color: #6b6b6b;
}

footer strong {
  font-weight: 500;
}