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

html, body {
  height: 100%;
  background: #0b0b0c;
  color: #f4f1ea;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(8, 8, 9, 0.55);
}

main {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px 96px;
  gap: 10px;
}

.mark {
  background: #f0d000;
  color: #111;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  padding: 4px 10px 3px;
  margin-bottom: 8px;
}

h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 10vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

p { color: #c9c4b8; font-size: 15px; letter-spacing: 0.04em; }

.place {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a958a;
}

.mail {
  margin-top: 18px;
  color: #f4f1ea;
  text-decoration: none;
  border-bottom: 1px solid #f0d000;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.mail:hover { color: #f0d000; }

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #8a867c;
  background: linear-gradient(to top, rgba(8, 8, 9, 0.85), transparent);
}
