:root {
  --bg: #0a0a0a;
  --ink: #f5f5f5;
  --muted: #7a7a7a;
  --accent: #ff3b30;
  --serif: "Times New Roman", Georgia, serif;
  --sans: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: var(--bg); color: var(--ink); font-family: var(--sans); }
a { color: inherit; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; z-index: 10;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; mix-blend-mode: difference; color: white;
}

.site-header .brand { font-weight: 700; }
.site-header .count { color: var(--muted); }

.carousel {
  height: 100vh; width: 100vw; overflow: hidden; position: relative;
}
.carousel-track {
  display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.slide-tagline {
  font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 6rem); line-height: 1.05;
  margin: 0 0 1.5rem; max-width: 18ch; font-style: italic;
}
.slide-blurb {
  font-size: 1.1rem; max-width: 50ch; margin: 0 0 2rem; opacity: 0.9;
}
.slide-cta {
  display: inline-block; padding: 0.85rem 1.6rem;
  border: 1px solid currentColor; border-radius: 999px;
  text-decoration: none; font-family: var(--mono); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.slide-cta:hover { background: currentColor; }
.slide-cta:hover span { color: var(--bg); }
.slide-date {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.75rem; opacity: 0.5;
}

.empty {
  display: flex; height: 100vh; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 2rem;
}
.empty h1 { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 6vw, 4rem); margin: 0; }
.empty p { color: var(--muted); margin-top: 1rem; max-width: 40ch; }

.nav {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; align-items: center;
  z-index: 10;
}
.nav button {
  background: transparent; border: 1px solid var(--ink); color: var(--ink);
  width: 2.5rem; height: 2.5rem; border-radius: 50%; cursor: pointer;
  font-family: var(--mono); font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.nav button:hover { background: var(--ink); color: var(--bg); }
.dots { display: flex; gap: 0.35rem; padding: 0 1rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--ink); }
