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

:root {
  --bg: #0f0f12;
  --text: #e8e6e3;
  --accent: #c9a962;
  --muted: #6b6b6f;
}

html {
  min-height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

main {
  text-align: center;
  max-width: 32rem;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.email:hover {
  background: rgba(201, 169, 98, 0.08);
  border-color: var(--accent);
  color: #e8dbb8;
}

.email:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
