* {
  box-sizing: border-box;
  cursor: none !important;
}

/* Custom cursor dot */
.ocre-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

.ocre-cursor.is-visible {
  opacity: 1;
}

.ocre-cursor.is-hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: transparent;
  border: 1.5px solid var(--red);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--red);
  overflow-x: hidden;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  min-height: 100vh;
}

.hero-top,
.hero-art,
.manifesto {
  min-height: 100vh;
  min-height: 100svh;
}

/* All content sections above footer */
.hero-top,
.hero-art,
.manifesto,
.ritual,
.escape {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.manifesto {
  background: #000000;
}

p,
h2 {
  margin: 0;
}

.section-meta,
.manifesto__line,
.manifesto__copy,
.ritual__intro,
.ritual__intro-word,
.ritual__intro-tail,
.ritual__detail-title,
.ritual__detail-line,
.ritual__detail-copy,
.escape__copy,
.escape__link,
.escape__newsletter-copy,
.escape__newsletter-action,
.escape__newsletter-placeholder,
.site-footer__legal,
.site-footer__terms,
.site-footer__language,
.site-footer__credit {
  font-family: "Poppins", Arial, sans-serif;
}
