/* ─── Sitemap Layout ─── */
.sm-wrap {
  background: #000;
  min-height: 100vh;
  padding: 160px 2.5rem 10rem;
}
.sm-inner { max-width: 1100px; margin: 0 auto; }

.sm-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 6rem;
}

.sm-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 4rem;
}

.sm-section { margin-bottom: 5rem; }

.sm-section__heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
}

.sm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 4rem;
}
.sm-list li { break-inside: avoid; margin-bottom: 0.9rem; }

.sm-list a {
  font-family: "Sohne", sans-serif;
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sm-list a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #0a5bff;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.sm-list a:hover { color: #fff; }
.sm-list a:hover::before { opacity: 1; }

.sm-list--single { columns: 1; }

@media screen and (max-width: 768px) {
  .sm-wrap { padding: 140px 1.5rem 7rem; }
  .sm-title { margin-bottom: 4rem; }
  .sm-list { columns: 1; }
}
