/* Hero section, used on the homepage */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0 80px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  color: #8a1c1c;
  font-weight: 300;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: #3a3a44;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ede9df;
  border: 1px solid #d8d3c5;
  overflow: hidden;
}

.hero-figure img,
.hero-figure svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-figure .figure-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(245, 243, 238, 0.95);
}

/* Highlights strip */
.highlights {
  background: #14141a;
  color: #f5f3ee;
  padding: 70px 48px;
  margin: 0 -48px;
  border-top: 1px solid #d8d3c5;
}

.highlights-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.15);
  padding-bottom: 20px;
}

.highlights h2 {
  font-size: 32px;
  color: #f5f3ee;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.highlight-item {
  border-top: 1px solid rgba(245, 243, 238, 0.2);
  padding-top: 24px;
}

.highlight-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #b08a3e;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.highlight-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #f5f3ee;
  margin-bottom: 12px;
}

.highlight-venue {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.65);
  font-style: italic;
}

.highlights a {
  color: #f5f3ee !important;
  text-decoration: none !important;
}

/* Translation callout */
.translation {
  background: #ede9df;
  border-top: 1px solid #d8d3c5;
  border-bottom: 1px solid #d8d3c5;
  padding: 100px 48px;
  margin: 0 -48px;
}

.translation-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.translation-visual {
  aspect-ratio: 1;
  background: #f5f3ee;
  border: 1px solid #d8d3c5;
}

.translation h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.translation h2 em {
  font-style: italic;
  color: #8a1c1c;
}

.translation-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #d8d3c5;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  color: #8a1c1c;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #6b6b76;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 140px;
  line-height: 1.4;
}

/* Join CTA */
.join {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.join-head h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.join-head h2 em {
  font-style: italic;
  color: #8a1c1c;
}

.join-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a44;
  margin-bottom: 28px;
}

/* Section heads used on subpages */
.section-head {
  margin: 60px 0;
  max-width: 720px;
}

.section-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a44;
}

/* Responsive */
@media (max-width: 980px) {
  .hero,
  .translation-inner,
  .join,
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .highlights,
  .translation {
    padding: 60px 24px;
    margin: 0 -24px;
  }
}
