@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cormorant+SC:wght@300;400&display=swap');

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

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Cormorant Garant', serif;
  background: #fff;
}

/* ── Header ── */
.header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 2.5rem;
}

.header__title {
  font-family: 'Cormorant SC', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.18em;
  line-height: 1.15;
  color: #1a1a1a;
  text-align: center;
}

/* ── Main / cream section ── */
.main {
  flex: 1;
  background: #f0ebe4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 3rem;
}

/* ── Logo lockup ── */
.lockup {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.lockup__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.lockup__wordmark {
  font-family: 'Cormorant SC', serif;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.38em;
  color: #1a1a1a;
}

.lockup__emblem {
  display: block;
}

.lockup__divider {
  width: 1px;
  height: 56px;
  background: #999;
  flex-shrink: 0;
}

.lockup__academy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.lockup__academy span {
  font-family: 'Cormorant Garant', serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.lockup__academy em {
  font-style: italic;
}

/* ── Event info ── */
.event-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.event-info__label {
  font-family: 'Cormorant SC', serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: #555;
}

.event-info__message {
  font-family: 'Cormorant Garant', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}
