@font-face {
  font-family: 'Panchang';
  src: url('assets/fonts/Panchang-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Panchang';
  src: url('assets/fonts/Panchang-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ── Custom cursor ── */
.custom-cursor {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 67, 46, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: width 0.3s, height 0.3s, border-color 0.3s, top 0.3s, left 0.3s;
}

.custom-cursor.cursor-hover {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
  border-color: var(--green);
}

.custom-cursor-dot {
  position: fixed;
  top: -3px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
}

/* ── Scroll progress line ── */
.scroll-progress {
  position: fixed;
  right: 24px;
  top: 0;
  width: 1.5px;
  height: 100vh;
  background: var(--green);
  transform-origin: top;
  transform: scaleY(0);
  z-index: 999;
  opacity: 0.4;
  pointer-events: none;
}

:root {
  --green: #00432e;
  --green-deep: #002e1f;
  --green-soft: #0a5940;
  --paper: #f3ede0;
  --ink: #00432e;
  --ink-dim: rgba(0, 67, 46, 0.62);
  --ink-faint: rgba(0, 67, 46, 0.22);
  --accent-line: rgba(0, 67, 46, 0.18);
  --cream: #f3ede0;
  --cream-dim: rgba(243, 237, 224, 0.65);
  --yellow: #f0c63b;
  --navy: #0b1d3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  position: relative;
}

/* subtle grain overlay across the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

h1, h2, h3, nav a {
  font-family: 'SF Pro Display', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-style: italic;
}

a {
  color: var(--ink);
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.4rem 6%;
  background-color: var(--paper);
  border-bottom: 1px solid var(--accent-line);
}

nav a,
.menu-toggle span {
  color: var(--ink);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.8rem;
}

nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.25s ease;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background-color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* fallback so cream text stays readable if the video fails to load */
  background: radial-gradient(circle at 50% 40%, var(--green-soft), var(--green-deep));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 67, 46, 0.06) 0%, transparent 60%, var(--paper) 100%);
}

.hero-name {
  position: relative;
  z-index: 2;
  font-family: 'Panchang', 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

.letter {
  display: inline-block;
  transition: transform 0.18s ease;
}

.letter:hover {
  transform: scale(1.22);
}

.hero-sub {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 1.1rem;
  font-family: 'Helvetica Neue', -apple-system, Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.75rem;
  font-variant: small-caps;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--cream-dim);
  text-align: center;
}

.scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  animation: pulse-cue 2.4s ease-in-out infinite;
}

@keyframes pulse-cue {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- About ---------- */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 8%;
  background-color: var(--paper);
}

.about-inner {
  max-width: 640px;
}

.page-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.page-title span {
  font-weight: 400;
}

.tagline {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--accent-line);
  display: inline-block;
}

p {
  line-height: 1.9;
  font-size: 1rem;
  color: var(--ink-dim);
  margin-bottom: 1.4rem;
  max-width: 56ch;
}

/* ---------- Experience / Film roll ---------- */
.experience {
  padding: 7rem 0 6rem;
  background-color: var(--paper);
}

.section-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 8% 3rem;
  letter-spacing: 0.01em;
}

.filmroll-wrap {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
}

.filmroll {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: roll 38s linear infinite;
}

.filmroll:hover {
  animation-play-state: paused;
}

@keyframes roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.film-frame {
  position: relative;
  flex: 0 0 260px;
  height: 320px;
  border: 6px solid var(--paper);
  outline: 1px solid var(--accent-line);
  overflow: hidden;
  transition: transform 0.3s ease, outline-color 0.3s ease;
  will-change: transform;
}

.film-frame:hover {
  z-index: 5;
  outline-color: var(--yellow);
}

.film-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.film-logo-box {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 160px 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.logo-mark {
  color: var(--green);
  text-align: center;
  font-family: 'SF Pro Display', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

.logo-denso {
  font-size: 1.7rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
}

.logo-eperformax {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}

.logo-toka {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.18em;
}

.logo-duchess {
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

.logo-mango {
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.logo-img {
  width: 72%;
  height: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.logo-img-duchess {
  background-image: url('assets/logos/duchess.png');
}

.logo-img-mango {
  width: 82%;
  background-image: url('assets/logos/mango.png');
}

.logo-img-denso {
  width: 76%;
  background-image: url('assets/logos/denso.svg');
}

.logo-img-eperformax {
  width: 82%;
  background-image: url('assets/logos/eperformax.png');
}

.film-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 46, 31, 0.85));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.film-caption .role {
  font-size: 0.92rem;
  color: var(--cream);
}

.film-caption .meta {
  font-size: 0.72rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.skills-heading {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 5rem 8% 2rem;
  letter-spacing: 0.01em;
  font-style: italic;
  font-family: 'SF Pro Display', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

.skills-group {
  margin: 0 8% 2.5rem;
}

.skills-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  font-weight: 400;
  margin-bottom: 1rem;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.skill-tag {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.skill-tag:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ---------- Work ---------- */
.work {
  display: flex;
  min-height: 100vh;
}

.work-half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--accent-line);
}

.work-half:last-child {
  border-right: none;
}

.work-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.5s ease, transform 0.5s ease;
  filter: blur(0px) brightness(0.7);
}

.work-img-personal { background: radial-gradient(circle at 30% 30%, #1a6048, #00251a); }
.work-img-business { background: radial-gradient(circle at 70% 70%, #0a5940, #00251a); }

.work-half:hover .work-img {
  filter: blur(6px) brightness(0.5);
  transform: scale(1.08);
}

.work-text {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: transform 0.4s ease;
}

.work-half:hover .work-text {
  transform: scale(1.1);
}

.work-text h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.work-half:hover .work-text h3 {
  color: var(--yellow);
}

.work-text p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0;
}

/* ---------- Contact ---------- */
.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 8%;
  background-color: var(--paper);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 1.5rem 0 4rem;
  align-items: center;
}

.contact-list a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 0.4rem;
  transition: opacity 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-list a:hover {
  color: var(--navy);
  opacity: 0.85;
  border-color: var(--yellow);
}

footer {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}

/* ---------- Detail / gallery pages ---------- */
.detail-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 6% 6rem;
}

.back-link {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background-color: var(--yellow);
  margin-bottom: 3rem;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  transition: transform 0.2s ease;
}

.back-link:hover {
  transform: translateX(-2px);
}

.detail-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin-bottom: 2.5rem;
}

.image-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background-color: var(--accent-line);
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  margin-top: 3rem;
}

.inline-link {
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.inline-link:hover {
  border-color: var(--yellow);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--green-deep);
  border: 1px solid var(--accent-line);
}

.video-label {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.image-placeholder {
  background-color: var(--paper);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 700px) {
  .site-header {
    padding: 1.6rem 6%;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.3s ease;
    z-index: 20;
  }

  nav ul.open {
    right: 0;
  }

  nav ul a {
    color: var(--cream);
  }

  .site-header:has(nav ul.open) .menu-toggle span {
    background-color: var(--cream);
  }

  .menu-toggle {
    display: flex;
    z-index: 30;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .work {
    flex-direction: column;
  }

  .work-half {
    min-height: 50vh;
    border-right: none;
    border-bottom: 1px solid var(--accent-line);
  }
}

/* ── Work scroll showcase ── */
#work {
  background: #000;
  position: relative;
}

.ws-slides-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ws-slides-group {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s;
}

.ws-slides-group--hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.ws-slides {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  will-change: transform;
}

/* Background floating text */
.ws-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ws-bg-row {
  font-family: 'Panchang', Arial, sans-serif;
  font-weight: 700;
  font-size: 22vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 237, 224, 0.07);
  white-space: nowrap;
  line-height: 0.88;
  will-change: transform;
  transition: opacity 0.6s;
}

.ws-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-deep) 0%, #000 100%);
}


body.work-page {
  background: #000;
  color: var(--cream);
  overflow-x: hidden;
}

body.work-page .site-header {
  position: fixed;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

body.work-page .site-header nav a {
  color: var(--cream-dim);
}

body.work-page .site-header nav a:hover {
  color: var(--cream);
}

.ws-outer {
  position: relative;
}

.ws-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  cursor: none;
  background: #000;
}

.ws-slides {
  position: absolute;
  inset: 0;
}

.ws-slide {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.ws-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-caption {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  pointer-events: none;
}

.ws-caption-label {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-family: 'Panchang', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.ws-caption-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 237, 224, 0.5);
}

.ws-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
}

.ws-counter {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  text-align: right;
  z-index: 20;
  pointer-events: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.45);
}

.ws-counter-current {
  display: block;
  font-size: 1.8rem;
  font-family: 'Panchang', Arial, sans-serif;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.ws-vertical-label {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.3);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}

.ws-back {
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.5);
  text-decoration: none;
  z-index: 20;
  pointer-events: auto;
  transition: color 0.2s;
}

.ws-back:hover {
  color: var(--cream);
}

.ws-progress {
  position: absolute;
  bottom: 6.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

.ws-progress-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(243, 237, 224, 0.25);
  transition: background 0.3s, transform 0.3s;
}

.ws-progress-dot.active {
  background: var(--cream);
  transform: scale(1.4);
}

.ws-audio-btn {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(243, 237, 224, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  pointer-events: auto;
}

.ws-audio-btn:hover {
  border-color: var(--cream);
  background: rgba(243, 237, 224, 0.1);
}

.ws-audio-icon {
  width: 16px;
  height: 16px;
}

.ws-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.35);
  pointer-events: none;
  z-index: 10;
  animation: hintFade 2s ease-in-out infinite;
}

@keyframes hintFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Text scramble chars ── */
.sc-char {
  color: var(--green-soft);
  opacity: 0.55;
  font-style: normal;
}
.sc-dim {
  opacity: 0.18;
}

/* ── Marquee ticker ── */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 1.1rem 0;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  background: var(--paper);
  position: relative;
  z-index: 2;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-inner--rev {
  animation-direction: reverse;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .filmroll,
  .marquee-inner,
  .scroll-cue,
  .ws-scroll-hint {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }
}
