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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ddd0b5;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  color: #3a3228;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Header */
header {
  padding: 2.5rem 3rem 1.5rem;
  text-align: center;
}

.header-logo {
  height: 72px;
  width: auto;
  display: inline-block;
  opacity: 0.9;
}

/* Main content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  color: #2c241c;
}

.story p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a4e40;
  margin-bottom: 1.4rem;
}

.story p:last-child {
  margin-bottom: 0;
}

/* Event link */
.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.6rem 0;
  text-decoration: none;
  color: #8a7d6b;
  transition: color 0.3s ease;
}

.event-link:hover {
  color: #2c241c;
}

.event-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

.event-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.event-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.event-link:hover .event-arrow {
  transform: translateX(3px);
}

/* Footer */
footer {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(58, 50, 40, 0.1);
}

.contact {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #5a4e40;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  display: inline-block;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 600px) {
  header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .header-logo {
    height: 56px;
  }

  main {
    padding: 1.5rem 1.5rem 3rem;
  }

  h1 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .story p {
    font-size: 0.93rem;
    line-height: 1.85;
  }

  footer {
    padding: 1.5rem 1.5rem 1.5rem;
  }
}
