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

body {
  font-family: "Georgia", "Times New Roman", serif;
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.82)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: #f5f1e8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 820px;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(8px);
}

.brand {
  font-size: 36px;
  letter-spacing: 6px;
  color: #c9a96e;
  margin-bottom: 22px;
}

.tagline {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #d8c8a3;
  margin-bottom: 18px;
}

h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 500;
}

.description {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.2;
  color: #ddd6c8;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.contacts a {
  text-decoration: none;
  color: #111;
  background: #c9a96e;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.25s ease;
}

.contacts a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-note {
  font-size: 13px;
  color: #a9a092;
}

@media (max-width: 700px) {
  .container {
    padding: 34px 20px;
  }

  h1 {
    font-size: 34px;
  }

  .description {
    font-size: 16px;
  }
}