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

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

:root {
  --bg:       #080808;
  --fg:       #EDEDED;
  --muted:    #555555;
  --rule:     #1C1C1C;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Cormorant Garant', Georgia, serif;
  background-color: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 2rem;
  overflow-x: hidden;
}

/* ── Page wrapper ── */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  animation: appear 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* ── Brand name ── */
.brand {
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--fg);
  text-transform: uppercase;
  text-align: center;
}

/* ── Rule ── */
.rule {
  width: 48px;
  height: 1px;
  background: var(--muted);
  border: none;
  opacity: 0.6;
}

/* ── Status ── */
.status {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ── Footer ── */
footer {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--rule);
  text-transform: uppercase;
  white-space: nowrap;
  animation: appear 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  .wrapper, footer {
    animation: none;
  }
}

@media (max-width: 480px) {
  .brand {
    letter-spacing: 0.1em;
  }
}
