:root {
  --ink: #2c2a1c;
  --gold: #7e794d;
  --gold-deep: #5b5c2c;
  --overlay: rgba(28, 26, 14, 0.55);
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
  font-family: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  background-image: url("background.jpg");
  background-color: #1c1a0e;
  background-repeat: repeat;
  background-position: left top;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
}

.stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 34rem;
  animation: rise 0.9s ease both;
}

.logo {
  width: clamp(120px, 26vw, 170px);
  height: auto;
  margin-top: 3rem;
}

.title {
  font-size: clamp(1.9rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.title br {
  display: none;
}

@media (min-width: 30rem) {
  .title br {
    display: block;
  }
}

.tagline {
  margin-top: 2.5rem;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.socials {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  color: var(--gold);
  background: rgba(246, 241, 228, 0.1);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.social svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social .label {
  white-space: nowrap;
}

.social:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.note {
  min-height: 1.2rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
}

.footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer nav {
  display: flex;
  gap: 1rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--cream);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }
  .social:hover {
    transform: none;
  }
}
