/* ── Reach Layout ── */
html, body {
  overflow: hidden;
}

.page {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.back--fixed {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 2;
}

.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease forwards;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

.contact-item {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(42, 42, 42, 0.25);
  letter-spacing: 0.04em;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(42, 42, 42, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--teal);
}

.contact-item .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}

.divider {
  width: 25px;
  height: 1px;
  background: var(--teal);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}

.note {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(42, 42, 42, 0.25);
  line-height: 1.7;
  max-width: 300px;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
