/* ============================================================
   NOW.CSS — /now page styles
   ============================================================ */

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 10rem 4rem 8rem;
}

.page-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 0.9;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.1s ease forwards;
}

.now-updated {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

.now-body {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.now-block {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}
.now-block:nth-child(1) { animation-delay: 0.25s; }
.now-block:nth-child(2) { animation-delay: 0.35s; }
.now-block:nth-child(3) { animation-delay: 0.45s; }
.now-block:nth-child(4) { animation-delay: 0.55s; }
.now-block:nth-child(5) { animation-delay: 0.65s; }
.now-block:last-child { border-bottom: none; }

.now-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.now-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.now-content p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: #B8B5AE;
  line-height: 1.8;
}

.now-footer-note {
  margin-top: 3rem;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s ease forwards;
}
.now-footer-note a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.now-footer-note a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
footer a:hover { color: var(--accent); }

@media (max-width: 900px) {
  main { padding: 8rem 2rem 5rem; }
  .now-block { gap: 1.25rem; }
}