.intro {
  font-size: 13px;
  opacity: 0.45;
  margin-top: 0;
}

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

body {
  font-family: 'Georgia', serif;
  background: #f7f5f1;
  color: #1f1f1f;
  line-height: 1.8;
  padding: 60px 20px;
}

h1 {
  text-align: center;
  margin-bottom: 0; /* remove the big gap */
  font-weight: normal;
  letter-spacing: 0.3px;
}

section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 18px;
  transition: opacity 0.6s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slot {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.reveal-trigger {
  background: none;
  border: none;
  font: inherit;
  font-size: 10px;
  opacity: 0.25;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.reveal-trigger:hover {
  opacity: 0.4;
}

.revealed-line {
  display: none;
}

.reveal-slot.show-line .reveal-trigger {
  display: none;
}

.reveal-slot.show-line .revealed-line {
  display: block;
}

.final {
  opacity: 0.95;
  letter-spacing: 0.6px;
  transform: translateY(10px);
}

.reveal.visible .final {
  transition: all 1.8s ease;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.credit {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 40px;
}

/* Title spacing */
.title-section {
  flex-direction: column;
  gap: 12px;
}