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

html, body {
  height: 100%;
}

body {
  background: #0b0b0b;
  color: #f2f0ec;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.brand {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 14px;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a49c;
}

.footer-link {
  position: fixed;
  bottom: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-link a {
  color: #a8a49c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-link a:hover {
  color: #f2f0ec;
  border-bottom-color: #f2f0ec;
}

/* Calendar page */
.calendar-page {
  justify-content: flex-start;
  padding-top: 48px;
}

.calendar-page .brand {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.calendar-page .tagline {
  margin-bottom: 32px;
}

.calendar-wrap {
  width: 100%;
  max-width: 800px;
  background: #f2f0ec;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 600px;
}

@media (max-width: 500px) {
  .calendar-wrap iframe {
    height: 480px;
  }
}
