@font-face {
  font-family: 'Burberry House';
  src: url('fonts/burberry-house-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

html, body {
  height: 100%;
}

body {
  background-color: #e1e1e1;
  font-family: 'Burberry House', serif;
  color: #000;
}

/* ── Keyframes ── */
@keyframes logoReveal {
  0% {
    opacity: 1;
    color: transparent;
    -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0);
  }
  30% {
    opacity: 1;
    color: transparent;
    -webkit-text-stroke: 0.8px rgba(0, 0, 0, 1);
  }
  100% {
    opacity: 1;
    color: #000;
    -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* ── Layout ── */
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 928px;
  max-width: 100%;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 190px;
}

/* ── Logo ── */
.logo {
  font-family: 'Burberry House', serif;
  font-size: 64px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: logoReveal 3.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
}

/* ── Email ── */
.email {
  font-family: 'Burberry House', serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 2.8s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}

/* ── Flower ── */
.flower {
  position: relative;
  width: 544px;
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0;
  animation: scaleIn 3.5s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .page {
    padding: 48px 24px;
    align-items: flex-start;
    padding-top: 15vh;
  }

  .content {
    gap: 8px;
  }

  .logo {
    font-size: 48px;
  }

  .email {
    font-size: 13px;
  }

  .flower {
    width: 100%;
  }
}

.flower img {
  position: absolute;
  width: 240.41%;
  height: 131.09%;
  left: -70.21%;
  top: -15.54%;
  max-width: none;
  pointer-events: none;
}
