/* ── contact.css — page-specific styles only ── */
/* Relies on index.css for tokens, reset, body, animations, scroll-line, links */

/* ── Layout ── */
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 0;
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out-expo) 0.1s both;
}

.topbar-id {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: none !important;
}

.topbar-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.topbar-nav a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: none;
  padding-bottom: 0;
  transition: color 0.2s;
}

.topbar-nav a:hover {
  color: var(--text-secondary);
  border-bottom: none;
}

/* ── Hero ── */
.hero {
  padding: 96px 0 64px;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.15s both;
  border-bottom: none;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-title span {
  display: block;
  padding-left: 0.08em;
  color: var(--text-secondary);
}

.hero-divider {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.3s both;
}

/* ── Intro ── */
.intro {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.35s both;
}

/* ── Contact list ── */
.contact-list {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) both;
}

.contact-item:last-child {
  border-bottom: 1px solid var(--border);
}

.contact-item:nth-child(1) {
  animation-delay: 0.42s;
}
.contact-item:nth-child(2) {
  animation-delay: 0.5s;
}
.contact-item:nth-child(3) {
  animation-delay: 0.58s;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(229, 213, 183, 0.2);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.contact-value:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Footer ── */
.footer {
  padding: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-out-expo) 0.75s both;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
  border-bottom: none;
}

.footer-year {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── Vertical rule ── */
.v-rule {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out-expo) 0.8s both;
}

.v-rule-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
}

.v-rule-text {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  .hero {
    padding: 64px 0 48px;
  }
  .v-rule {
    display: none;
  }
  .topbar-nav {
    gap: 14px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
