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

html, body { height: 100%; }

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2ead9;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,2,0.55) 0%, rgba(10,6,2,0.75) 60%, rgba(10,6,2,0.9) 100%);
  z-index: -1;
}

.wrap { max-width: 560px; }

.mark {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.mark span { color: #e8dcc0; font-weight: 300; margin-left: 4px; }

h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

p {
  color: #d9cdb8;
  font-size: 16px;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #d4af37;
  background: rgba(10,6,2,0.35);
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.25s ease;
}
.cta:hover { background: #d4af37; color: #0a0602; }

.footer {
  margin-top: 60px;
  font-size: 12px;
  color: #a99a7c;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
