.aera-home {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 10000;
  padding: 11px 14px 11px 20px;
  border: 1px solid rgba(221, 214, 202, 0.22);
  background: #1e1b18;
  color: #ede8e0;
  box-shadow: 0 8px 24px rgba(20, 17, 14, 0.18);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.aera-home:hover {
  background: #2a2520;
  color: #ffffff;
}

.aera-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
  padding: 13px 16px;
  border: 1px solid rgba(221, 214, 202, 0.28);
  border-radius: 2px;
  background: #1e1b18;
  color: #f5f2ed;
  box-shadow: 0 14px 38px rgba(20, 17, 14, 0.24);
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.aera-chat:hover {
  transform: translateY(-2px);
  background: #2a2520;
  box-shadow: 0 18px 44px rgba(20, 17, 14, 0.3);
}

.aera-chat-status {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #67c977;
  box-shadow: 0 0 0 5px rgba(103, 201, 119, 0.12);
}

.aera-chat-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.aera-chat-copy small {
  color: #b0a696;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 2.5px;
  line-height: 1;
  text-transform: uppercase;
}

.aera-chat-copy strong {
  color: #f5f2ed;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
}

.aera-chat-arrow {
  color: #c8bfb0;
  font-size: 13px;
}

@media (max-width: 600px) {
  .aera-home {
    top: 20px;
    left: 20px;
    font-size: 12px;
    letter-spacing: 6px;
  }

  .aera-chat {
    right: 16px;
    bottom: 16px;
    min-width: 154px;
    padding: 12px 14px;
  }
}
