.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: 0.4;
}


/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 4rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 1rem;
  /* ADD THIS */
}

.nav-logo img {
  height: 36px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--ink);
}

/* NAV LINKS */
nav ul {
  list-style: none;
  /* 🔥 REMOVE BULLETS */
  display: flex;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  /* 🔥 REMOVE BLUE LINK STYLE */
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--stone);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--ink);
}


.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: #847161;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #d6dee5 0%,
      #c8c3bd 45%,
      #8a8178 100%);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  /* 🔥 thinner */
  font-size: 88px;
  /* bigger like reference */
  line-height: 1.05;
  /* tighter */
  letter-spacing: 0.5px;
  /* airy feel */
  color: #4d453e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #847161;
}

.hero-sub {
  margin-top: 30px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--stone);
}

.hero-cta {
  margin-top: 50px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}

.hero-cta::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ink);
  margin-top: 8px;
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-geo::before {
  top: 10%;
  right: -5%;
  width: 60%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  /* 🔥 stronger */
}

.hero-geo::after {
  bottom: 8%;
  left: 8%;
  width: 38%;
  height: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-number {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  /* 🔥 increase visibility */
}

.vertical-text {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);

  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: #6f6257;
  /* 🔥 stronger than rgba */
  white-space: nowrap;
}