:root {
  --gold: #d2b279;
  --gold-light: #dbaf76;
  --gold-dim: rgba(210, 178, 121, 0.14);
  --gold-glow: rgba(210, 178, 121, 0.35);
  --bg: #080808;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --border: rgba(210, 178, 121, 0.22);
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.62);
  --font-display: "Cormorant", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --radius: 999px;
  --max-width: 28rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(210, 178, 121, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(210, 178, 121, 0.06), transparent 50%),
    var(--bg);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  padding: 2.5rem 1.25rem 2rem;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: var(--max-width);
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease both;
}

.logo-wrap {
  width: 7.5rem;
  margin-bottom: 1.25rem;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 22ch;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: var(--max-width);
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-item {
  animation: fade-up 0.7s ease both;
}

.link-item:nth-child(1) { animation-delay: 0.08s; }
.link-item:nth-child(2) { animation-delay: 0.14s; }
.link-item:nth-child(3) { animation-delay: 0.2s; }
.link-item:nth-child(4) { animation-delay: 0.26s; }

.link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px var(--gold-glow);
  outline: none;
}

.link-btn:active {
  transform: translateY(0);
}

.link-btn--primary {
  border-color: rgba(210, 178, 121, 0.45);
  background: linear-gradient(135deg, rgba(210, 178, 121, 0.18), rgba(210, 178, 121, 0.06));
}

.link-btn--primary .link-label {
  color: var(--gold-light);
}

.link-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.link-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fade-up 0.7s ease 0.32s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--gold-light);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--text);
  outline: none;
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
  animation: fade-up 0.7s ease 0.38s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
