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

:root {
  --bg: #0f1216;
  --accent: #c0483a;
  --accent-hover: #ad4133;
  --accent-text: #ec8168;
  --text: #fff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-faint: rgba(255, 255, 255, 0.62);
  --text-footer: rgba(255, 255, 255, 0.58);
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
  --focus-ring: #ffffff;
}

/*
 * Color tokens are chosen to clear WCAG 2.1 AA contrast (4.5:1 body text,
 * 3:1 UI/focus indicators) against --bg, most at AAA (7:1). See CLAUDE.md
 * "Accessibility standards" before changing any of these.
 */

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  font: 700 14px 'Archivo', sans-serif;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: 'Libre Franklin', sans-serif;
}

/* Header */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 clamp(12px, 3vw, 14px) 'Archivo', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wordmark-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex: none;
}

.location-tag {
  font: 500 11px 'IBM Plex Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Hero */

.hero {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(24px, 4vw, 56px);
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.hero-image {
  flex: 1 1 340px;
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
}

h1 {
  margin: 0;
  font: 800 clamp(32px, 6.2vw, 64px)/1.02 'Archivo', sans-serif;
  letter-spacing: -.03em;
  max-width: 16ch;
  text-wrap: balance;
}

.lede {
  margin: 0;
  font: 400 clamp(15px, 2.1vw, 19px)/1.55 'Libre Franklin', sans-serif;
  color: var(--text-dim);
  max-width: 48ch;
  text-wrap: pretty;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  padding: 18px 26px;
  font: 700 clamp(16px, 2.2vw, 18px) 'Archivo', sans-serif;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  transition: background 0.15s ease;
}

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

.cta-button:focus-visible {
  outline-offset: 3px;
  border-radius: 12px;
}

.cta-arrow {
  font-size: .85em;
  opacity: .8;
}

.dates-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--border-light);
}

.date-card {
  min-width: 150px;
}

.date-label {
  font: 500 11px 'IBM Plex Mono', monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.date-value {
  margin-top: 5px;
  font: 700 clamp(16px, 2.1vw, 19px) 'Archivo', sans-serif;
}

.date-place {
  margin-top: 3px;
  font: 400 13px/1.45 'Libre Franklin', sans-serif;
  color: var(--text-faint);
}

/* Footer */

.site-footer {
  padding: 20px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--border);
  font: 400 13px/1.5 'Libre Franklin', sans-serif;
  color: var(--text-footer);
}
