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

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f5;
  color: #2c2c2c;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

main {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 480px;
  width: 100%;
}

.icon svg {
  width: 56px;
  color: #2c2c2c;
  opacity: 0.6;
}

h1 {
  font-size: clamp(1rem, 11vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.tagline {
  font-size: 1rem;
  font-style: italic;
  color: #777;
  letter-spacing: 0.15em;
  margin-top: 0.6rem;
}

.divider svg {
  width: 200px;
  color: #c8bfb6;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
}

.venue,
.venue:link,
.venue:visited {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #2c2c2c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.venue:hover {
  border-bottom-color: #2c2c2c;
}

.address {
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
}

.date {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #2c2c2c;
  color: #faf8f5;
}
