@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&display=swap');

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

:root {
  --bg: #2d2d2d;
  --accent: #ffffff;
  --muted: rgba(240,237,232,0.35);
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z M28 66 L56 50 L56 84 L28 100 L0 84 L0 50 Z' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
  z-index: 0;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

/* Signature */
.signature-wrap {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.signature-wrap img {
  width: clamp(210px, 25vw, 315px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.05);
  user-select: none;
  pointer-events: none;
}

/* Nav */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  list-style: none;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.58rem, 0.9vw, 0.7rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.4s ease, letter-spacing 0.4s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #f5c518;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover {
  color: var(--accent);
  letter-spacing: 0.46em;
}

.nav a:hover::after {
  width: 100%;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}
