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

:root {
  --bg: #0f1216;
  --accent: #c0483a;
  --accent-hover: #d9614f;
  --text: #fff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-faint: rgba(255, 255, 255, 0.45);
  --text-footer: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
}

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-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);
}

.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);
}
