.sitemap-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.045), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(134, 22, 38, 0.16), transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.028), transparent 32%),
    linear-gradient(to bottom, #000 0%, #070404 46%, #000 100%);
}

/* Local header styling so the sitemap page does not depend on home.css */
.sitemap-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 38px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sitemap-page .brand-mark {
  display: inline-flex;
  align-items: center;
  width: 104px;
  opacity: 0.88;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.sitemap-page .brand-mark:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.sitemap-page .header-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.08);
}

.sitemap-page .site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sitemap-page .site-nav a,
.sitemap-page .site-nav button {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.sitemap-page .site-nav a:hover,
.sitemap-page .site-nav button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.sitemap-main {
  position: relative;
  z-index: 10;
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 138px 0 84px;
}

.sitemap-shell {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.034), transparent 38%),
    rgba(7, 7, 7, 0.76);
  box-shadow:
    0 44px 150px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.095);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sitemap-hero {
  padding: 56px 58px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-kicker,
.sitemap-updated,
.sitemap-section h2 {
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sitemap-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
}

.sitemap-hero h1 {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.sitemap-updated {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sitemap-section {
  min-height: 220px;
  padding: 40px 58px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.sitemap-section:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.085);
}

.sitemap-section:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.sitemap-section h2 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.58);
}

.sitemap-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-section a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    color 240ms ease,
    transform 260ms var(--ease-cinema),
    opacity 240ms ease;
}

.sitemap-section a:hover {
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .sitemap-page .site-header {
    align-items: center;
    gap: 16px;
    flex-direction: column;
    padding: 22px 22px;
    text-align: center;
  }

  .sitemap-page .brand-mark {
    width: 92px;
  }

  .sitemap-page .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 18px;
  }

  .sitemap-page .site-nav a,
  .sitemap-page .site-nav button {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .sitemap-main {
    width: calc(100vw - 28px);
    padding: 132px 0 54px;
  }

  .sitemap-shell {
    border-radius: 18px;
  }

  .sitemap-hero {
    padding: 44px 28px 34px;
  }

  .sitemap-hero h1 {
    font-size: clamp(30px, 12vw, 48px);
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-section {
    min-height: auto;
    padding: 34px 28px 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  }

  .sitemap-section:nth-child(odd) {
    border-right: 0;
  }

  .sitemap-section:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  }

  .sitemap-section:last-child {
    border-bottom: 0;
  }

  .sitemap-section a {
    font-size: 14px;
  }
}