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

:root {
  --ivory: #F2E7D3;
  --ivory-muted: rgba(242, 231, 211, 0.45);
  --ivory-dim: rgba(242, 231, 211, 0.22);
  --bg: #050505;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 5vh 2rem 5vh;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── Header ── */

.header {
  padding-top: 2rem;
}

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  letter-spacing: 0.28em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-top: 0.9rem;
}

/* ── Main ── */

.main {
  width: 100%;
  padding: 1rem 0;
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--ivory-dim);
  margin: 2.8rem auto;
}

.arriving {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

.tagline {
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 0.9rem;
}

.follow {
  font-size: clamp(0.7rem, 2vw, 0.78rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ── Footer ── */

.footer {
  padding-bottom: 1rem;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.6rem;
  margin-bottom: 1.2rem;
}

.footer-link {
  font-size: clamp(0.65rem, 1.8vw, 0.72rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--ivory);
}

.separator {
  color: var(--ivory-dim);
  font-size: 0.7rem;
}

.footer-email {
  margin-top: 0.4rem;
}

.email-link {
  font-size: clamp(0.62rem, 1.7vw, 0.68rem);
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--ivory-muted);
}

/* ── Fade-in ── */

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile ── */

@media (max-width: 480px) {
  .page {
    padding: 6vh 1.5rem 5vh;
  }

  .divider {
    margin: 2.2rem auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.55rem;
  }

  .separator {
    display: none;
  }
}
