:root {
  --black: #0b0b0b;
  --burnt-orange: #c65a1e;
  --light-bg: #f4f4f4;
  --muted: #888;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

/* subtle grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.container {
  text-align: center;
  padding: 40px 24px;
  max-width: 960px;
}

/* Brand */
.brand {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--black), var(--burnt-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* Subheading */
.subheading {
  margin-top: 24px;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.35em;
  font-weight: 600;
  color: var(--burnt-orange);

  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 0.4s;
}

/* Divider */
.divider {
  width: 90px;
  height: 3px;
  margin: 42px auto;
  background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.75s;
}

/* Contact */
.contact {
  font-size: 1rem;
  color: var(--muted);

  opacity: 0;
  transform: translateY(10px);
  animation: revealUp 0.8s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 1s;
}

.contact a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--burnt-orange);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact a:hover {
  color: var(--burnt-orange);
  border-color: var(--black);
}

/* Footer */
footer {
  margin-top: 56px;
  font-size: 0.85rem;
  color: #aaa;

  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.25s;
}

/* Animations */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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