:root {
  --bg: #141420;
  --surface: #1c1c2e;
  --surface-hover: #22223a;
  --border: #2e2e44;
  --text: #d8d8e0;
  --text-bright: #f0f0f5;
  --muted: #8888a0;
  --accent: #e2a93b;
  --accent-dim: rgba(226, 169, 59, 0.12);
  --accent-hover: #f0be55;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

/* ── Hero ── */
.hero {
  margin-bottom: 3.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.hero .subtitle {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2.25rem;
}

.hero .intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.hero .intro p + p {
  margin-top: 1rem;
}

.hero .intro strong {
  color: var(--text-bright);
  font-weight: 600;
}

/* ── Photo strip ── */
.photo-strip {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.photo-strip img {
  flex: 1;
  min-width: 0;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 1.5rem 0;
}

/* ── CTA ── */
.cta {
  margin-bottom: 3.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-dim);
}

.cta p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.cta p:last-of-type {
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: var(--accent-hover);
}

/* ── Section headers ── */
h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

section {
  margin-bottom: 1.75rem;
}

/* ── Future events ── */
.future-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.future-list li {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-bright);
  padding-left: 1.25rem;
  position: relative;
}

.future-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Run your own ── */
.run-your-own p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.run-your-own a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.run-your-own a:hover {
  color: var(--accent-hover);
}

/* ── Past events ── */
.events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.event:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
}

.event-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.event-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.event-summary {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.event a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.event a:hover {
  color: var(--accent-hover);
}

/* ── Bio ── */
.bio {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2.25rem;
}

.bio-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.bio p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.bio p + p {
  margin-top: 0.75rem;
}

.bio a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.bio a:hover {
  color: var(--accent-hover);
}

.bio .clients {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Footer ── */
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .container { padding: 3rem 1.25rem 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .cta { padding: 1.5rem; }
  .bio { padding: 1.5rem; }
}
