/* ── HOME PAGE — dark, hero + two directory links ─────────────── */
.home-wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 32px 100px rgba(0, 0, 0, 0.35);
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.02) saturate(1.08);
  transition: filter 1.2s ease, transform 1.4s ease;
}
.hero:hover .hero-media {
  filter: brightness(1.12) saturate(1.15);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 65%);
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.5rem;
}
.hero-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
}
.hero-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
}
.hero-action {
  margin-top: 1.2rem;
}
.hero-action a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  padding-bottom: 2px;
  transition: border-color 0.4s ease;
}
.hero-action a:hover { border-color: #fff; }

.directories {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.dir-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  transition: opacity 0.5s ease;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.dir-link:hover { opacity: 0.55; }

.dir-icon {
  width: 44px;
  height: 44px;
  stroke: var(--ink-faint);
  fill: none;
  stroke-width: 1;
  flex-shrink: 0;
}

.dir-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dir-label {
  font-size: 1rem;
  letter-spacing: 0.16em;
  font-weight: 300;
  color: var(--ink);
}
.dir-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 300;
}

@media (max-width: 600px) {
  .home-wrap { padding-top: 1.5rem; gap: 2rem; }
  .hero { aspect-ratio: 4/3; }
  .hero-title { font-size: 1.2rem; }
  .hero-overlay { padding: 1.5rem; }
  .dir-label { font-size: 0.9rem; }
}
