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

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #E8E4DF;
  --muted: #6B6560;
  --accent: #C8B8A0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Switzer', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Grain texture overlay */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10;
  opacity: 0.4;
}

.container {
  text-align: left;
  padding: 2rem;
  max-width: 640px;
  width: 100%;
}

.label {
  display: block;
  font-family: 'Switzer', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#line1 { animation-delay: 0.3s; }
#line2 { animation-delay: 0.5s; color: var(--accent); }

.italic {
  font-style: italic;
}

.sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards 0.8s;
}

.dot-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

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

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}